mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-25 20:01:45 +00:00
17 lines
249 B
TypeScript
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,
|
|
}
|