UNPKG

@neo-one/smart-contract-compiler

Version:

NEO•ONE TypeScript smart contract compiler.

14 lines (13 loc) 493 B
import ts from 'typescript'; import { WrappableType } from '../../constants'; import { ScriptBuilder } from '../../sb'; import { VisitOptions } from '../../types'; import { Helper } from '../Helper'; export interface WrapArrayValHelperOptions { readonly type: WrappableType; } export declare class WrapArrayValHelper extends Helper { private readonly type; constructor(options: WrapArrayValHelperOptions); emit(sb: ScriptBuilder, node: ts.Node, options: VisitOptions): void; }