Skip to content

Commit c2ae3b0

Browse files
committed
wip
Signed-off-by: Mior Muhammad Zaki <[email protected]>
1 parent 0ed4648 commit c2ae3b0

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

types/nova.d.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,18 @@ import type { Menu } from './menu'
1010

1111
type State = {
1212
baseUri: string;
13-
currentUser: any;
13+
currentUser: string | number | null;
1414
mainMenu: any[];
1515
userMenu: any[];
16-
resources: any[];
16+
resources: Resource[];
1717
version: string;
1818
mainMenuShown: boolean;
1919
canLeaveForm: boolean;
2020
canLeaveModal: boolean;
2121
pushStateWasTriggered: boolean;
2222
validLicense: true;
23-
[key: string]: any;
23+
queryStringParams: {[key: string]: any};
24+
compiledQueryStringParams: string;
2425
}
2526

2627
type BootingCallback = ((app: VueApp, store: Store<State>) => void);

0 commit comments

Comments
 (0)