mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-26 20:31:33 +00:00
* Upgrade Cosmos SDK to v4.3 * push pkg lock * fix tests * fix package-lock.json * fix package-lock * fix package-lock.json * fix package-lock.json * log console warning when RU limit is reached * fix tests * fix format * fix tests * added description to RU limit message * show warning icon on tab header --------- Co-authored-by: Asier Isayas <aisayas@microsoft.com>
18 lines
264 B
TypeScript
18 lines
264 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,
|
|
Warning = 3,
|
|
}
|