UNPKG

moysklad-api-model

Version:

Объектная модель API МойСклад для TypeScript проектов

9 lines (8 loc) 292 B
import type { EntityByMetaType } from '.'; export type AssortmentMetaType = 'product' | 'service' | 'bundle' | 'consignment' | 'variant'; export type Assortment = EntityByMetaType[AssortmentMetaType] & { stock: number; reserve: number; inTransit: number; quantity: number; };