UNPKG

@neo-one/smart-contract-compiler

Version:

NEO•ONE TypeScript smart contract compiler.

13 lines (12 loc) 497 B
import ts from 'typescript'; import { ScriptBuilder } from '../../sb'; import { VisitOptions } from '../../types'; import { Helper } from '../Helper'; export interface RawEnumeratorForEachFuncHelperOptions { readonly deserializeKey?: boolean; } export declare class RawEnumeratorForEachFuncHelper extends Helper { private readonly deserializeKey; constructor(options: RawEnumeratorForEachFuncHelperOptions); emit(sb: ScriptBuilder, node: ts.Node, optionsIn: VisitOptions): void; }