remove unused location type

This commit is contained in:
Niels Lyngsø
2023-04-27 13:23:14 +02:00
parent 089be3d167
commit 3c3e792fae
3 changed files with 1 additions and 14 deletions

View File

@@ -9,7 +9,6 @@ export type {
Query,
} from 'router-slot/model';
export * from 'router-slot/util';
export * from './route-location.interface';
export * from './route.context';
export * from './route.interface';
export * from './generate-route-path-builder.function';

View File

@@ -1,6 +0,0 @@
export interface UmbRouteLocation {
name?: string;
params: {
[key: string]: string;
};
}