@neo-one/smart-contract-compiler
Version:
NEO•ONE TypeScript smart contract compiler.
13 lines (12 loc) • 531 B
TypeScript
import ts from 'typescript';
import { ScriptBuilder } from '../../sb';
import { VisitOptions } from '../../types';
import { Helper } from '../Helper';
export interface CreateEnumeratorIterableIteratorHelperOptions {
readonly mapValue?: (options: VisitOptions) => void;
}
export declare class CreateEnumeratorIterableIteratorHelper extends Helper {
private readonly mapValue;
constructor(options: CreateEnumeratorIterableIteratorHelperOptions);
emit(sb: ScriptBuilder, node: ts.Node, options: VisitOptions): void;
}