UNPKG

amocrm-client

Version:
10 lines (7 loc) 328 B
import { ICriteria, IEntityAttributes } from "./api"; export type TagCriteria = Partial<Omit<ICriteria<{ id: number, name: string }, never>, "with" | "order">> export type EmbeddedTag = Partial<ITagAttributes>; export interface ITagAttributes extends IEntityAttributes { name: string; color: string | null; }