@vitaeflow/sdk-js
Version:
Official JavaScript/TypeScript SDK for VitaeFlow - Embed and extract structured resume data from PDFs
22 lines • 647 B
TypeScript
export type LogLevel = "debug" | "info" | "warn" | "error";
export interface LoggerOptions {
enabled?: boolean;
level?: LogLevel;
prefix?: string;
}
/**
* Simple logger for debugging
*/
export declare class Logger {
private readonly enabled;
private readonly level;
private readonly prefix;
private readonly levels;
constructor(options?: LoggerOptions);
private shouldLog;
debug(message: string, ...args: any[]): void;
info(message: string, ...args: any[]): void;
warn(message: string, ...args: any[]): void;
error(message: string, ...args: any[]): void;
}
//# sourceMappingURL=logger.d.ts.map