UNPKG
@2bad/bitrix
Version:
beta (3.0.0-beta.0)
latest (2.5.1)
3.0.0-beta.0
2.5.1
2.5.0
2.4.0
2.3.1
2.3.0
2.2.1
2.2.0
2.1.0
2.0.3
2.0.2
2.0.1
2.0.0
Bitrix24 REST API client that doesn't suck
github.com/2BAD/bitrix
2BAD/bitrix
@2bad/bitrix
/
build
/
module
/
commands.d.ts
11 lines
(10 loc)
•
261 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
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
; };