UNPKG

amocrm-client

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