Files
cosmos-explorer/src/Explorer/Menus/NotificationConsole/ConsoleData.tsx

17 lines
249 B
TypeScript

/**
* Interface for the data/content that will be recorded
*/
export interface ConsoleData {
type: ConsoleDataType;
date: string;
message: string;
id?: string;
}
export enum ConsoleDataType {
Info = 0,
Error = 1,
InProgress = 2,
}