We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ed4648 commit c2ae3b0Copy full SHA for c2ae3b0
types/nova.d.ts
@@ -10,17 +10,18 @@ import type { Menu } from './menu'
10
11
type State = {
12
baseUri: string;
13
- currentUser: any;
+ currentUser: string | number | null;
14
mainMenu: any[];
15
userMenu: any[];
16
- resources: any[];
+ resources: Resource[];
17
version: string;
18
mainMenuShown: boolean;
19
canLeaveForm: boolean;
20
canLeaveModal: boolean;
21
pushStateWasTriggered: boolean;
22
validLicense: true;
23
- [key: string]: any;
+ queryStringParams: {[key: string]: any};
24
+ compiledQueryStringParams: string;
25
}
26
27
type BootingCallback = ((app: VueApp, store: Store<State>) => void);
0 commit comments