UNPKG

@neo-one/smart-contract-compiler

Version:

NEO•ONE TypeScript smart contract compiler.

16 lines (15 loc) 598 B
import ts from 'typescript'; import { ContractInfo, DeployPropInfo } from '../../../contract'; import { ScriptBuilder } from '../../sb'; import { VisitOptions } from '../../types'; import { Helper } from '../Helper'; export interface DeployHelperOptions { readonly contractInfo: ContractInfo; readonly propInfo: DeployPropInfo; } export declare class DeployHelper extends Helper { private readonly contractInfo; private readonly propInfo; constructor({ contractInfo, propInfo }: DeployHelperOptions); emit(sb: ScriptBuilder, node: ts.Node, optionsIn: VisitOptions): void; }