UNPKG

@brizy/media-gallery

Version:
9 lines (8 loc) 196 B
export type Type = "error" | "info" | "success"; export interface Notification { key: string; type: Type; message: string; duration?: number; } export type State = Notification[];