cubetiq-ts-utils/src/log/interfaces.ts

8 lines
134 B
TypeScript
Raw Normal View History

2021-03-10 21:55:41 +07:00
export type LogType = 'info' | 'error' | 'warn';
export interface Loggable {
type: LogType;
from?: string;
data?: any;
2021-03-10 21:55:41 +07:00
}