convokit
Version:
A flexible TypeScript framework for ingesting, processing, and exporting chat/conversation data for LLM training and analysis.
13 lines • 603 B
TypeScript
declare function time(where: string, timerName: string): Promise<void>;
declare function timeEnd(where: string, timerName: string): Promise<void>;
export declare const ConvoKitLogging: {
info: (where: string, ...args: any[]) => Promise<void>;
error: (where: string, ...args: any[]) => Promise<void>;
debug: (where: string, ...args: any[]) => Promise<void>;
warn: (where: string, ...args: any[]) => Promise<void>;
success: (where: string, ...args: any[]) => Promise<void>;
time: typeof time;
timeEnd: typeof timeEnd;
};
export {};
//# sourceMappingURL=ConvoKitLogging.d.ts.map