11 lines
227 B
TypeScript
11 lines
227 B
TypeScript
|
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;
|
||
|
}
|