@neo-one/smart-contract-compiler
Version:
NEO•ONE TypeScript smart contract compiler.
13 lines (12 loc) • 497 B
TypeScript
import ts from 'typescript';
import { ScriptBuilder } from '../../../sb';
import { VisitOptions } from '../../../types';
import { Helper } from '../../Helper';
export interface InObjectPropertyHelperOptions {
readonly propType: ts.Type | undefined;
}
export declare class InObjectPropertyHelper extends Helper {
readonly propType: ts.Type | undefined;
constructor({ propType }: InObjectPropertyHelperOptions);
emit(sb: ScriptBuilder, node: ts.Node, options: VisitOptions): void;
}