Files
Message-Push-Nest/web/src/store/page_sate.d.ts
T

16 lines
414 B
TypeScript
Raw Normal View History

2025-08-10 14:32:24 +08:00
export interface PageState {
isLogin: boolean;
Token: string;
isShowAddWayDialog: boolean;
siteConfigData: any;
ShowDialogData: any;
}
export interface PageStateActions {
setIsLogin(state: boolean): void;
setToken(token: string): void;
setShowAddWayDialog(status: boolean): void;
setSiteConfigData(configData: any): void;
}
export declare const usePageState: () => PageState & PageStateActions;