@five-vm/cli
Version:
High-performance CLI for Five VM development with WebAssembly integration
10 lines • 357 B
TypeScript
/**
* Simple logging that can be silenced in production
*/
export declare const log: {
debug: (message: string, ...args: any[]) => false | void;
info: (message: string, ...args: any[]) => false | void;
warn: (message: string, ...args: any[]) => void;
error: (message: string, ...args: any[]) => void;
};
//# sourceMappingURL=index.d.ts.map