10 lines
191 B
TypeScript
10 lines
191 B
TypeScript
export type LoggerConfig = {
|
|
off?: {
|
|
tableColumns?: boolean;
|
|
};
|
|
};
|
|
export type GlobalConfig = {
|
|
logger?: LoggerConfig;
|
|
};
|
|
export declare const GlobalConfig: GlobalConfig;
|