UNPKG

@neo-one/smart-contract-compiler

Version:

NEO•ONE TypeScript smart contract compiler.

6 lines (5 loc) 182 B
export declare abstract class ProgramCounter { abstract plus(value: number): ProgramCounter; abstract equals(other: ProgramCounter): boolean; abstract getPC(): number; }