diff options
Diffstat (limited to 'src/services/waybills/index.ts')
-rw-r--r-- | src/services/waybills/index.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/services/waybills/index.ts b/src/services/waybills/index.ts index 8cd6c0c..a26318b 100644 --- a/src/services/waybills/index.ts +++ b/src/services/waybills/index.ts @@ -2,8 +2,9 @@ import Form from './WaybillForm'; import Panel from './WaybillPanel'; import { transformOperation, transformStatus } from '../transforms'; import { ServiceParams } from '../../lib/ServiceContext'; +import { Waybill } from '../types'; -const service: ServiceParams = { +const service: ServiceParams<Waybill> = { route: 'waybills', name: 'Накладные', nameSingular: 'Накладная', |