@neo-one/smart-contract-compiler
Version:
NEO•ONE TypeScript smart contract compiler.
14 lines (13 loc) • 478 B
TypeScript
import ts from 'typescript';
import { WrappableType } from '../../constants';
import { ScriptBuilder } from '../../sb';
import { VisitOptions } from '../../types';
import { Helper } from '../Helper';
export interface WrapValHelperOptions {
readonly type: WrappableType;
}
export declare class WrapValHelper extends Helper {
private readonly type;
constructor(options: WrapValHelperOptions);
emit(sb: ScriptBuilder, node: ts.Node, options: VisitOptions): void;
}