mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-23 02:17:11 +00:00
12 lines
226 B
TypeScript
12 lines
226 B
TypeScript
|
|
export const TableDataSource = {
|
||
|
|
Alert: 'alert',
|
||
|
|
Dashboard: 'dashboard',
|
||
|
|
} as const;
|
||
|
|
|
||
|
|
export const DynamicColumnsKey = {
|
||
|
|
CreatedAt: 'createdAt',
|
||
|
|
CreatedBy: 'createdBy',
|
||
|
|
UpdatedAt: 'updatedAt',
|
||
|
|
UpdatedBy: 'updatedBy',
|
||
|
|
};
|