agsamantha/node_modules/jintr/dist/nodes/UnaryExpression.d.ts

6 lines
295 B
TypeScript
Raw Normal View History

2024-10-02 15:15:21 -05:00
import type ESTree from 'estree';
import BaseJSNode from './BaseJSNode.js';
export default class UnaryExpression extends BaseJSNode<ESTree.UnaryExpression> {
run(): number | boolean | "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function" | undefined;
}