UNPKG

@neo-one/smart-contract-compiler

Version:

NEO•ONE TypeScript smart contract compiler.

15 lines (14 loc) 607 B
import ts from 'typescript'; import { ScriptBuilder } from '../../sb'; import { VisitOptions } from '../../types'; import { Helper } from '../Helper'; export interface CreateEnumeratorIterableIteratorHelperOptions { readonly deserializeKey?: boolean; readonly mapValue?: (options: VisitOptions) => void; } export declare class CreateEnumeratorIterableIteratorHelper extends Helper { private readonly deserializeKey; private readonly mapValue; constructor(options: CreateEnumeratorIterableIteratorHelperOptions); emit(sb: ScriptBuilder, node: ts.Node, options: VisitOptions): void; }