mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-06 15:59:38 +00:00
16 lines
429 B
TypeScript
16 lines
429 B
TypeScript
import { NotificationPosition } from './NotificationPosition'
|
|
import { NotificationSeverity } from './NotificationSeverity'
|
|
import { AnyComponent } from '../../types'
|
|
|
|
export interface Notification {
|
|
id: string
|
|
title: string
|
|
component: AnyComponent
|
|
subTitle?: string
|
|
subTitlePostfix?: string
|
|
position: NotificationPosition
|
|
severity?: NotificationSeverity
|
|
params?: { [key: string]: any }
|
|
closeTimeout?: number
|
|
}
|