UNPKG

moysklad-api-model

Version:

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

8 lines (7 loc) 224 B
import type { AbstractFile, EntityRef } from '.'; export type ImageFields = { updated: string; miniature: EntityRef<'image'>; tiny: EntityRef<'image'>; }; export type Image = AbstractFile<'image'> & ImageFields;