import { GLODataType } from '@glossa-glo/data-types'; import type { SymbolScope } from '@glossa-glo/symbol'; import AST from './AST'; export default abstract class UnaryAST extends AST { target: AST; constructor(target: AST); promote(target: typeof GLODataType, scope: SymbolScope): this; } //# sourceMappingURL=UnaryAST.d.ts.map