add location interface to router

This commit is contained in:
Mads Rasmussen
2023-03-13 15:12:46 +01:00
parent 59455f67e6
commit 63b386d67f
2 changed files with 7 additions and 0 deletions

View File

@@ -2,3 +2,4 @@ export * from 'router-slot';
export * from './router-slot.element';
export * from './router-slot-change.event';
export * from './router-slot-init.event';
export * from './route-location.interface';

View File

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