diff options
author | eug-vs <eug-vs@keemail.me> | 2021-03-26 01:56:04 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2021-03-26 01:56:04 +0300 |
commit | ef742ea9b2f246f74eae74169675a331679ad41c (patch) | |
tree | 693e92f3e6c2897038875550a12bbc1191b6d5c0 /src/services/contractors/index.ts | |
parent | 865b41114060765308d560181f4996c0aa7a3e74 (diff) | |
download | commercel-ui-ef742ea9b2f246f74eae74169675a331679ad41c.tar.gz |
feat: add strong typing where possible
Diffstat (limited to 'src/services/contractors/index.ts')
-rw-r--r-- | src/services/contractors/index.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/services/contractors/index.ts b/src/services/contractors/index.ts index 2341f3a..9730eff 100644 --- a/src/services/contractors/index.ts +++ b/src/services/contractors/index.ts @@ -1,8 +1,9 @@ import Form from './ContractorForm'; import Panel from './ContractorPanel'; import { ServiceParams } from '../../lib/ServiceContext'; +import { Contractor } from '../types'; -const service: ServiceParams = { +const service: ServiceParams<Contractor> = { route: 'contractors', name: 'Контрагенты', nameSingular: 'Контрагент', |