This commit is contained in:
Luiz Silva 2025-02-22 14:04:59 -03:00
parent 79a83fe158
commit e1d94a75bd
8 changed files with 27 additions and 16 deletions

2
dist/logger.d.ts vendored
View file

@ -11,5 +11,5 @@ type tipoLog = {
export declare const logger: ({ app, eProducao }: {
app: string;
eProducao: boolean;
}) => ({ inquilino, usuario }: tipoOpSessao) => (level: tipoLevel, mensagem: string, op_tipoLog?: tipoLog) => Promise<void>;
}) => ({ inquilino, usuario }: tipoOpSessao) => (level: tipoLevel, mensagem: string, op_tipoLog?: tipoLog) => Promise<[objeto: object, erro?: string]>;
export {};