TenantAtlas/apps/platform/.pnpm-store/v10/files/98/379faa0991aa0329a88599986728ac4fc76b3510ce1fff8a46e5aecb3302913f1a8749e773750b4408ab942fa1fd2b55345026a4ef317662bebaadf93b677c
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

24 lines
694 B
Plaintext

import { entityKind } from "./entity.cjs";
export interface Logger {
logQuery(query: string, params: unknown[]): void;
}
export interface LogWriter {
write(message: string): void;
}
export declare class ConsoleLogWriter implements LogWriter {
static readonly [entityKind]: string;
write(message: string): void;
}
export declare class DefaultLogger implements Logger {
static readonly [entityKind]: string;
readonly writer: LogWriter;
constructor(config?: {
writer: LogWriter;
});
logQuery(query: string, params: unknown[]): void;
}
export declare class NoopLogger implements Logger {
static readonly [entityKind]: string;
logQuery(): void;
}