fix(core): update

This commit is contained in:
2021-08-08 23:06:14 +02:00
parent 8f4c0a5ec6
commit 01dbec7da9
8 changed files with 76 additions and 61 deletions

11
ts/navigationentry.ts Normal file
View File

@@ -0,0 +1,11 @@
import * as plugins from './navigation.plugins';
export class NavigationEntry {
level: number;
group: string;
groupRanking: number;
iconUrl: string;
id: string;
name: string;
callBack: (idArg?: string) => void;
}