pocketbase-tools
Version:
A TypeScript toolkit for PocketBase, featuring a standard service/action/types layered structure. It provides interfaces and implementations for common business logic such as users, products, company profiles, and file utilities, making it suitable for se
10 lines (9 loc) • 323 B
TypeScript
export declare class Logger {
private enableConsole;
constructor(enableConsole?: boolean);
success(message: string, data?: any): void;
error(message: string, error?: any): void;
warn(message: string, data?: any): void;
info(message: string, data?: any): void;
}
export declare const logger: Logger;