cubetiq-ts-utils/src/log/interfaces.ts
Sambo Chea 9e9cbe1162
All checks were successful
continuous-integration/drone/push Build is passing
Add log class and add some functins
Add jest for test units
Updated the package and lib
2021-03-10 20:23:49 +07:00

7 lines
125 B
TypeScript

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