IRouterPath

This commit is contained in:
Adina Țeudan 2022-03-01 12:51:22 +02:00
parent 17008f4475
commit 2427893303
2 changed files with 6 additions and 0 deletions

View File

@ -2,3 +2,4 @@ export * from './listable';
export * from './entity.model';
export * from './table-column-config.model';
export * from './listing-modes';
export * from './routerPath';

View File

@ -0,0 +1,5 @@
import { ITrackable } from './trackable';
export interface IRouterPath extends ITrackable {
readonly routerPath: string;
}