UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

6 lines (5 loc) 286 B
export declare function readJsonFile<T>(filePath: string): Promise<T | null>; export declare function writeJsonAtomic(filePath: string, value: unknown, options?: { mode?: number; }): Promise<void>; export declare function createAsyncLock(): <T>(fn: () => Promise<T>) => Promise<T>;