UNPKG

@neo-one/smart-contract-compiler

Version:

NEO•ONE TypeScript smart contract compiler.

14 lines (13 loc) 518 B
import ts from 'typescript'; import { GlobalProperty } from '../../constants'; import { ScriptBuilder } from '../../sb'; import { VisitOptions } from '../../types'; import { Helper } from '../Helper'; export interface GetGlobalPropertyHelperOptions { readonly property: GlobalProperty; } export declare class GetGlobalPropertyHelper extends Helper { private readonly property; constructor(options: GetGlobalPropertyHelperOptions); emit(sb: ScriptBuilder, node: ts.Node, options: VisitOptions): void; }