UNPKG

@xui/components

Version:

xUI Components for Angular

13 lines (12 loc) 301 B
export interface SettingsPage { stateChanged: (state: boolean) => void; save(): Promise<boolean>; reset(): Promise<boolean>; } export interface MenuItem { type: 'category' | 'item' | 'divider'; name?: string; critical?: boolean; component?: any; action?: () => void; }