UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

8 lines (7 loc) 256 B
export type RuntimeEnv = { log: (...args: unknown[]) => void; error: (...args: unknown[]) => void; exit: (code: number) => void; }; export declare const defaultRuntime: RuntimeEnv; export declare function createNonExitingRuntime(): RuntimeEnv;