mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-18 07:56:56 +00:00
8 lines
133 B
TypeScript
8 lines
133 B
TypeScript
|
|
import { AlertState } from './types';
|
||
|
|
|
||
|
|
export const INITIAL_ALERT_STATE: AlertState = {
|
||
|
|
name: '',
|
||
|
|
description: '',
|
||
|
|
labels: {},
|
||
|
|
};
|