UNPKG

@neo-one/smart-contract-compiler

Version:

NEO•ONE TypeScript smart contract compiler.

17 lines (16 loc) 595 B
import ts from 'typescript'; import { ScriptBuilder } from '../../sb'; import { VisitOptions } from '../../types'; import { Helper } from '../Helper'; export interface WrapValRecursiveHelperOptions { readonly checkValue?: boolean; readonly type: ts.Type | undefined; readonly optional?: boolean; } export declare class WrapValRecursiveHelper extends Helper { private readonly checkValue; private readonly type; private readonly optional?; constructor(options: WrapValRecursiveHelperOptions); emit(sb: ScriptBuilder, node: ts.Node, options: VisitOptions): void; }