moysklad-api-model
Version:
Объектная модель API МойСклад для TypeScript проектов
9 lines (8 loc) • 351 B
TypeScript
import type { AbstractDemand } from '.';
import type { AbstractDemandPatch } from './AbstractDemand';
export type RetailDemandFields = {
readonly cashSum: number;
readonly noCashSum: number;
};
export type RetailDemand = AbstractDemand<'retaildemand'> & RetailDemandFields;
export type RetailDemandPatch = AbstractDemandPatch<'retaildemand'>;