UNPKG

@neo-one/smart-contract-compiler

Version:

NEO•ONE TypeScript smart contract compiler.

17 lines (16 loc) 718 B
import ts from 'typescript'; import { ScriptBuilder } from '../../../sb'; import { VisitOptions } from '../../../types'; import { Helper } from '../../Helper'; export interface FindObjectPropertyHelperBaseOptions { readonly whenHasProperty: () => void; readonly whenNotHasProperty: () => void; readonly getObject: (sb: ScriptBuilder) => Helper; } export declare class FindObjectPropertyHelperBase extends Helper { private readonly whenHasProperty; private readonly whenNotHasProperty; private readonly getObject; constructor({ whenHasProperty, whenNotHasProperty, getObject }: FindObjectPropertyHelperBaseOptions); emit(sb: ScriptBuilder, node: ts.Node, options: VisitOptions): void; }