UNPKG

@neo-one/smart-contract-compiler

Version:

NEO•ONE TypeScript smart contract compiler.

15 lines (14 loc) 568 B
import ts from 'typescript'; import { ScriptBuilder } from '../../sb'; import { VisitOptions } from '../../types'; import { Helper } from '../Helper'; export interface CreateConstructArrayHelperOptions { readonly body: (options: VisitOptions) => void; readonly withScope: boolean; } export declare class CreateConstructArrayHelper extends Helper { private readonly body; private readonly withScope; constructor({ body, withScope }: CreateConstructArrayHelperOptions); emit(sb: ScriptBuilder, node: ts.Node, outerOptions: VisitOptions): void; }