48ea61cdcc
- Product documentation in docs/products/ - Updated MEMORY.md with product info - quiXzoom Auth Core as AAMOS Identity product
12 lines
350 B
TypeScript
12 lines
350 B
TypeScript
export type LogMethod = (context: object | string, message?: string) => void;
|
|
export type Logger = {
|
|
child: (context: object) => Logger;
|
|
debug: LogMethod;
|
|
error: LogMethod;
|
|
info: LogMethod;
|
|
trace: LogMethod;
|
|
warn: LogMethod;
|
|
};
|
|
export declare const setLogger: (newLogger: Logger) => void;
|
|
export declare const logger: Logger;
|