UNPKG

@2bad/bitrix

Version:

Bitrix24 REST API client that doesn't suck

11 lines (10 loc) 261 B
import { Method } from './methods'; export declare type Command = { readonly method: Method; readonly params?: Record<string, any>; }; export declare type Commands = { readonly [key: string]: Command; } | { readonly [index: number]: Command; };