@neo-one/smart-contract-compiler
Version:
NEO•ONE TypeScript smart contract compiler.
11 lines (10 loc) • 409 B
TypeScript
import ts from 'typescript';
import { Types } from '../../constants';
import { ScriptBuilder } from '../../sb';
import { VisitOptions } from '../../types';
import { Helper } from '../Helper';
export declare abstract class WrapHelper extends Helper {
protected readonly length: number;
protected abstract readonly type: Types;
emit(sb: ScriptBuilder, node: ts.Node, options: VisitOptions): void;
}