UNPKG

moysklad-api-model

Version:

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

8 lines (7 loc) 223 B
import type { Entity } from './Entity'; export type PriceType = Omit<Entity<'pricetype'>, 'accountId'> & { /** Наименование */ name: string; /** Внешний код */ externalCode: string; };