@neo-one/smart-contract-compiler
Version:
NEO•ONE TypeScript smart contract compiler.
13 lines (12 loc) • 521 B
TypeScript
import { SysCallName } from '@neo-one/client-common';
import ts from 'typescript';
import { WrappableType } from '../../constants';
import { ScriptBuilder } from '../../sb';
import { VisitOptions } from '../../types';
import { BuiltinValue } from '../BuiltinValue';
export declare class SysCallValue extends BuiltinValue {
private readonly syscall;
private readonly type;
constructor(syscall: SysCallName, type: WrappableType);
emit(sb: ScriptBuilder, node: ts.Identifier, options: VisitOptions): void;
}