UNPKG

moysklad-api-model

Version:

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

9 lines (8 loc) 273 B
import type { Entity, EntityRef } from '.'; export type AgentNote = Entity<'note'> & { /** Дата создания сущности */ readonly created: string; description?: string; agent: EntityRef<'counterparty'>; author: EntityRef<'employee'>; };