UNPKG

@neo-one/smart-contract-compiler

Version:

NEO•ONE TypeScript smart contract compiler.

13 lines (12 loc) 502 B
import ts from 'typescript'; import { ScriptBuilder } from '../../sb'; import { VisitOptions } from '../../types'; import { Helper } from '../Helper'; export interface GetSmartContractPropertyHelperOptions { readonly property: ts.PropertyDeclaration; } export declare class GetSmartContractPropertyHelper extends Helper { private readonly property; constructor({ property }: GetSmartContractPropertyHelperOptions); emit(sb: ScriptBuilder, node: ts.Node, options: VisitOptions): void; }