UNPKG

@neo-one/smart-contract-compiler

Version:

NEO•ONE TypeScript smart contract compiler.

18 lines (17 loc) 640 B
import ts from 'typescript'; import { ScriptBuilder } from '../../sb'; import { VisitOptions } from '../../types'; import { Helper } from '../Helper'; export interface InvokeCallHelperOptions { readonly bindThis?: boolean; readonly overwriteThis?: boolean; readonly noArgs?: boolean; } export declare class InvokeCallHelper extends Helper { static getKey(options?: InvokeCallHelperOptions): string; private readonly bindThis; private readonly overwriteThis; private readonly noArgs; constructor(options?: InvokeCallHelperOptions); emit(sb: ScriptBuilder, node: ts.Node, optionsIn: VisitOptions): void; }