| 115 | export type NotificationComponentProps = BaseComponentProps & BareNotificationProps; |
| 116 | |
| 117 | export interface OpenNotification { |
| 118 | id: string; |
| 119 | component: ComponentType<BareNotificationProps>; |
| 120 | options: NotificationOptions; |
| 121 | close(): void; |
| 122 | } |
| 123 | |
| 124 | export interface PiletNotificationsApi { |
| 125 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected