From f06c007bec1a7da5c257e68d6df8c806419ceb2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adina=20=C8=9Aeudan?= Date: Tue, 3 May 2022 23:01:58 +0300 Subject: [PATCH] Removed routerPath --- src/lib/listing/models/index.ts | 1 - src/lib/listing/models/routerPath.ts | 5 ----- 2 files changed, 6 deletions(-) delete mode 100644 src/lib/listing/models/routerPath.ts diff --git a/src/lib/listing/models/index.ts b/src/lib/listing/models/index.ts index 95240f4..586e11a 100644 --- a/src/lib/listing/models/index.ts +++ b/src/lib/listing/models/index.ts @@ -2,4 +2,3 @@ export * from './listable'; export * from './entity.model'; export * from './table-column-config.model'; export * from './listing-modes'; -export * from './routerPath'; diff --git a/src/lib/listing/models/routerPath.ts b/src/lib/listing/models/routerPath.ts deleted file mode 100644 index ddec1fc..0000000 --- a/src/lib/listing/models/routerPath.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { ITrackable } from './trackable'; - -export interface IRouterPath extends ITrackable { - readonly routerPath: string; -}