mui-toolpad-extended-tuni
Version:
16 lines (15 loc) • 322 B
TypeScript
/** @format */
export type NotificationRaw = {
type: string;
message: string;
singular?: boolean;
singularId?: string;
};
export type Notification = {
type: string;
message: string;
id: string;
singular?: boolean;
singularId?: string;
};
export declare const useNotificationStore: any;