graphdb-workbench
Version:
The web application for GraphDB APIs
15 lines (14 loc) • 355 B
TypeScript
export interface ExternalRouteItemModel {
url: string;
module: string;
path: string;
chunk: string;
controller: string;
templateUrl: string;
title?: string;
reloadOnSearch?: boolean;
helpInfo?: string;
documentationUrl?: string;
allowAuthorities?: string[];
}
export type RouteModel = ExternalRouteItemModel[];