cubetiq-ts-utils/src/log/interfaces.ts
Sambo Chea 478c7ab38f
Some checks failed
continuous-integration/drone/push Build is failing
Fixed the log class and updated tests
2021-03-10 21:55:41 +07:00

8 lines
134 B
TypeScript

export type LogType = 'info' | 'error' | 'warn';
export interface Loggable {
type: LogType;
from?: string;
data?: any;
}