forked from Kispi/Core
9 lines
No EOL
221 B
TypeScript
9 lines
No EOL
221 B
TypeScript
import { FunctionalComponent } from 'vue';
|
|
import { RouteLocationRaw } from 'vue-router';
|
|
|
|
export interface INavigationEntry {
|
|
name: string;
|
|
to?: RouteLocationRaw;
|
|
icon?: FunctionalComponent;
|
|
disabled?: boolean;
|
|
} |