remove comments

This commit is contained in:
Niels Lyngsø
2023-03-27 13:48:46 +02:00
parent d5e767230b
commit 59cb83d42a
2 changed files with 0 additions and 15 deletions

View File

@@ -1,11 +1,3 @@
import type { IRoute } from 'router-slot/model';
/*
type Optional<T> = { [P in keyof T]?: T[P] };
type IRouteWithComponentRoute = Exclude<IRoute, IComponentRoute>;
type IComponentRouteWithOptionalComponent = Omit<IComponentRoute, 'component'> &
Optional<Pick<IComponentRoute, 'component'>>;
export type UmbRoute = IRouteWithComponentRoute | IComponentRouteWithOptionalComponent;
*/
export type UmbRoute = IRoute;