UNPKG

@neo-one/smart-contract-compiler

Version:

NEO•ONE TypeScript smart contract compiler.

17 lines (16 loc) 685 B
import ts from 'typescript'; import { ScriptBuilder } from '../../sb'; import { VisitOptions } from '../../types'; import { Helper } from '../Helper'; export interface CreateIteratorIterableIteratorHelperOptions { readonly deserializeKey?: boolean; readonly mapKey?: (options: VisitOptions) => void; readonly mapValue?: (options: VisitOptions) => void; } export declare class CreateIteratorIterableIteratorHelper extends Helper { private readonly deserializeKey; private readonly mapKey; private readonly mapValue; constructor(options: CreateIteratorIterableIteratorHelperOptions); emit(sb: ScriptBuilder, node: ts.Node, options: VisitOptions): void; }