@ansible/ansible-ui-framework
Version:
A framework for building applications using PatternFly.
10 lines (9 loc) • 594 B
TypeScript
import { IPageNotificationGroup } from './PageNotificationGroup';
interface IPageNotifications {
notificationsDrawerOpen: boolean;
setNotificationsDrawerOpen: (setter: ((notificationsDrawerOpen: boolean) => boolean) | boolean) => void;
notificationGroups: Record<string, IPageNotificationGroup>;
setNotificationGroups: (setter: (notificationGroups: Record<string, IPageNotificationGroup>) => Record<string, IPageNotificationGroup>) => void;
}
export declare const usePageNotifications: import("zustand").UseBoundStore<import("zustand").StoreApi<IPageNotifications>>;
export {};