UNPKG

null.js

Version:
12 lines (11 loc) 320 B
export declare class Compiler { static compile(src: string, dst: string): void; compile(instructions: number[]): string; } export declare class Decompiler { static decompile(src: string, dst: string): void; decompile(src: number | bigint): { instructions: number[]; out: string; }; }