@lazycatcloud/sdk 0.1.477 → 0.1.478
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/common/box.d.ts +1664 -1560
- package/dist/common/box.d.ts.map +1 -1
- package/dist/common/file_handler.d.ts +1024 -960
- package/dist/common/file_handler.d.ts.map +1 -1
- package/dist/common/filetrans.d.ts +2688 -2520
- package/dist/common/filetrans.d.ts.map +1 -1
- package/dist/common/iscsi.d.ts +192 -180
- package/dist/common/iscsi.d.ts.map +1 -1
- package/dist/common/media_meta.d.ts +64 -60
- package/dist/common/media_meta.d.ts.map +1 -1
- package/dist/common/message.d.ts +448 -420
- package/dist/common/message.d.ts.map +1 -1
- package/dist/common/peripheral_device.d.ts +384 -360
- package/dist/common/peripheral_device.d.ts.map +1 -1
- package/dist/google/protobuf/timestamp.d.ts +64 -60
- package/dist/google/protobuf/timestamp.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/localdevice/client.d.ts +64 -60
- package/dist/localdevice/client.d.ts.map +1 -1
- package/dist/localdevice/contacts.d.ts +64 -60
- package/dist/localdevice/contacts.d.ts.map +1 -1
- package/dist/localdevice/photo.d.ts +192 -180
- package/dist/localdevice/photo.d.ts.map +1 -1
- package/dist/sys/btrfs.d.ts +192 -180
- package/dist/sys/btrfs.d.ts.map +1 -1
- package/dist/sys/hal.d.ts +128 -120
- package/dist/sys/hal.d.ts.map +1 -1
- package/dist/sys/ingress.d.ts +64 -60
- package/dist/sys/ingress.d.ts.map +1 -1
- package/dist/sys/network_manager.d.ts +192 -180
- package/dist/sys/network_manager.d.ts.map +1 -1
- package/dist/sys/package_manager.d.ts +9292 -8702
- package/dist/sys/package_manager.d.ts.map +1 -1
- package/dist/sys/package_manager.js +22 -5
- package/dist/sys/package_manager.js.map +1 -1
- package/dist/sys/stats/cgroup_metrics.d.ts +8768 -8220
- package/dist/sys/stats/cgroup_metrics.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/common/message.d.ts
CHANGED
|
@@ -86,40 +86,41 @@ export declare const Msg: {
|
|
|
86
86
|
high: number;
|
|
87
87
|
low: number;
|
|
88
88
|
unsigned: boolean;
|
|
89
|
-
add: (addend:
|
|
90
|
-
and: (other:
|
|
91
|
-
compare: (other:
|
|
92
|
-
comp: (other:
|
|
93
|
-
divide: (divisor:
|
|
94
|
-
div: (divisor:
|
|
95
|
-
equals: (other:
|
|
96
|
-
eq: (other:
|
|
89
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
90
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
91
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
92
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
93
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
94
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
95
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
96
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
97
97
|
getHighBits: () => number;
|
|
98
98
|
getHighBitsUnsigned: () => number;
|
|
99
99
|
getLowBits: () => number;
|
|
100
100
|
getLowBitsUnsigned: () => number;
|
|
101
101
|
getNumBitsAbs: () => number;
|
|
102
|
-
greaterThan: (other:
|
|
103
|
-
gt: (other:
|
|
104
|
-
greaterThanOrEqual: (other:
|
|
105
|
-
gte: (other:
|
|
106
|
-
ge: (other:
|
|
102
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
103
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
104
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
105
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
106
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
107
107
|
isEven: () => boolean;
|
|
108
108
|
isNegative: () => boolean;
|
|
109
109
|
isOdd: () => boolean;
|
|
110
110
|
isPositive: () => boolean;
|
|
111
|
+
isSafeInteger: () => boolean;
|
|
111
112
|
isZero: () => boolean;
|
|
112
113
|
eqz: () => boolean;
|
|
113
|
-
lessThan: (other:
|
|
114
|
-
lt: (other:
|
|
115
|
-
lessThanOrEqual: (other:
|
|
116
|
-
lte: (other:
|
|
117
|
-
le: (other:
|
|
118
|
-
modulo: (other:
|
|
119
|
-
mod: (other:
|
|
120
|
-
rem: (other:
|
|
121
|
-
multiply: (multiplier:
|
|
122
|
-
mul: (multiplier:
|
|
114
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
115
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
116
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
117
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
118
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
119
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
120
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
121
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
122
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
123
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
123
124
|
negate: () => Long;
|
|
124
125
|
neg: () => Long;
|
|
125
126
|
not: () => Long;
|
|
@@ -127,10 +128,10 @@ export declare const Msg: {
|
|
|
127
128
|
clz: () => number;
|
|
128
129
|
countTrailingZeros: () => number;
|
|
129
130
|
ctz: () => number;
|
|
130
|
-
notEquals: (other:
|
|
131
|
-
neq: (other:
|
|
132
|
-
ne: (other:
|
|
133
|
-
or: (other:
|
|
131
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
132
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
133
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
134
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
134
135
|
shiftLeft: (numBits: number | Long) => Long;
|
|
135
136
|
shl: (numBits: number | Long) => Long;
|
|
136
137
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -142,8 +143,9 @@ export declare const Msg: {
|
|
|
142
143
|
rotl: (numBits: number | Long) => Long;
|
|
143
144
|
rotateRight: (numBits: number | Long) => Long;
|
|
144
145
|
rotr: (numBits: number | Long) => Long;
|
|
145
|
-
subtract: (subtrahend:
|
|
146
|
-
sub: (subtrahend:
|
|
146
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
147
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
148
|
+
toBigInt: () => bigint;
|
|
147
149
|
toInt: () => number;
|
|
148
150
|
toNumber: () => number;
|
|
149
151
|
toBytes: (le?: boolean) => number[];
|
|
@@ -152,7 +154,7 @@ export declare const Msg: {
|
|
|
152
154
|
toSigned: () => Long;
|
|
153
155
|
toString: (radix?: number) => string;
|
|
154
156
|
toUnsigned: () => Long;
|
|
155
|
-
xor: (other:
|
|
157
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
156
158
|
} & { [K in Exclude<keyof I["id"], keyof Long>]: never; });
|
|
157
159
|
messageType?: MsgType;
|
|
158
160
|
title?: string;
|
|
@@ -162,40 +164,41 @@ export declare const Msg: {
|
|
|
162
164
|
high: number;
|
|
163
165
|
low: number;
|
|
164
166
|
unsigned: boolean;
|
|
165
|
-
add: (addend:
|
|
166
|
-
and: (other:
|
|
167
|
-
compare: (other:
|
|
168
|
-
comp: (other:
|
|
169
|
-
divide: (divisor:
|
|
170
|
-
div: (divisor:
|
|
171
|
-
equals: (other:
|
|
172
|
-
eq: (other:
|
|
167
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
168
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
169
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
170
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
171
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
172
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
173
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
174
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
173
175
|
getHighBits: () => number;
|
|
174
176
|
getHighBitsUnsigned: () => number;
|
|
175
177
|
getLowBits: () => number;
|
|
176
178
|
getLowBitsUnsigned: () => number;
|
|
177
179
|
getNumBitsAbs: () => number;
|
|
178
|
-
greaterThan: (other:
|
|
179
|
-
gt: (other:
|
|
180
|
-
greaterThanOrEqual: (other:
|
|
181
|
-
gte: (other:
|
|
182
|
-
ge: (other:
|
|
180
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
181
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
182
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
183
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
184
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
183
185
|
isEven: () => boolean;
|
|
184
186
|
isNegative: () => boolean;
|
|
185
187
|
isOdd: () => boolean;
|
|
186
188
|
isPositive: () => boolean;
|
|
189
|
+
isSafeInteger: () => boolean;
|
|
187
190
|
isZero: () => boolean;
|
|
188
191
|
eqz: () => boolean;
|
|
189
|
-
lessThan: (other:
|
|
190
|
-
lt: (other:
|
|
191
|
-
lessThanOrEqual: (other:
|
|
192
|
-
lte: (other:
|
|
193
|
-
le: (other:
|
|
194
|
-
modulo: (other:
|
|
195
|
-
mod: (other:
|
|
196
|
-
rem: (other:
|
|
197
|
-
multiply: (multiplier:
|
|
198
|
-
mul: (multiplier:
|
|
192
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
193
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
194
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
195
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
196
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
197
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
198
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
199
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
200
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
201
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
199
202
|
negate: () => Long;
|
|
200
203
|
neg: () => Long;
|
|
201
204
|
not: () => Long;
|
|
@@ -203,10 +206,10 @@ export declare const Msg: {
|
|
|
203
206
|
clz: () => number;
|
|
204
207
|
countTrailingZeros: () => number;
|
|
205
208
|
ctz: () => number;
|
|
206
|
-
notEquals: (other:
|
|
207
|
-
neq: (other:
|
|
208
|
-
ne: (other:
|
|
209
|
-
or: (other:
|
|
209
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
210
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
211
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
212
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
210
213
|
shiftLeft: (numBits: number | Long) => Long;
|
|
211
214
|
shl: (numBits: number | Long) => Long;
|
|
212
215
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -218,8 +221,9 @@ export declare const Msg: {
|
|
|
218
221
|
rotl: (numBits: number | Long) => Long;
|
|
219
222
|
rotateRight: (numBits: number | Long) => Long;
|
|
220
223
|
rotr: (numBits: number | Long) => Long;
|
|
221
|
-
subtract: (subtrahend:
|
|
222
|
-
sub: (subtrahend:
|
|
224
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
225
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
226
|
+
toBigInt: () => bigint;
|
|
223
227
|
toInt: () => number;
|
|
224
228
|
toNumber: () => number;
|
|
225
229
|
toBytes: (le?: boolean) => number[];
|
|
@@ -228,46 +232,47 @@ export declare const Msg: {
|
|
|
228
232
|
toSigned: () => Long;
|
|
229
233
|
toString: (radix?: number) => string;
|
|
230
234
|
toUnsigned: () => Long;
|
|
231
|
-
xor: (other:
|
|
235
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
232
236
|
} & { [K_1 in Exclude<keyof I["createTime"], keyof Long>]: never; });
|
|
233
237
|
readTime?: string | number | (Long & {
|
|
234
238
|
high: number;
|
|
235
239
|
low: number;
|
|
236
240
|
unsigned: boolean;
|
|
237
|
-
add: (addend:
|
|
238
|
-
and: (other:
|
|
239
|
-
compare: (other:
|
|
240
|
-
comp: (other:
|
|
241
|
-
divide: (divisor:
|
|
242
|
-
div: (divisor:
|
|
243
|
-
equals: (other:
|
|
244
|
-
eq: (other:
|
|
241
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
242
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
243
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
244
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
245
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
246
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
247
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
248
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
245
249
|
getHighBits: () => number;
|
|
246
250
|
getHighBitsUnsigned: () => number;
|
|
247
251
|
getLowBits: () => number;
|
|
248
252
|
getLowBitsUnsigned: () => number;
|
|
249
253
|
getNumBitsAbs: () => number;
|
|
250
|
-
greaterThan: (other:
|
|
251
|
-
gt: (other:
|
|
252
|
-
greaterThanOrEqual: (other:
|
|
253
|
-
gte: (other:
|
|
254
|
-
ge: (other:
|
|
254
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
255
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
256
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
257
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
258
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
255
259
|
isEven: () => boolean;
|
|
256
260
|
isNegative: () => boolean;
|
|
257
261
|
isOdd: () => boolean;
|
|
258
262
|
isPositive: () => boolean;
|
|
263
|
+
isSafeInteger: () => boolean;
|
|
259
264
|
isZero: () => boolean;
|
|
260
265
|
eqz: () => boolean;
|
|
261
|
-
lessThan: (other:
|
|
262
|
-
lt: (other:
|
|
263
|
-
lessThanOrEqual: (other:
|
|
264
|
-
lte: (other:
|
|
265
|
-
le: (other:
|
|
266
|
-
modulo: (other:
|
|
267
|
-
mod: (other:
|
|
268
|
-
rem: (other:
|
|
269
|
-
multiply: (multiplier:
|
|
270
|
-
mul: (multiplier:
|
|
266
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
267
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
268
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
269
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
270
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
271
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
272
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
273
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
274
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
275
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
271
276
|
negate: () => Long;
|
|
272
277
|
neg: () => Long;
|
|
273
278
|
not: () => Long;
|
|
@@ -275,10 +280,10 @@ export declare const Msg: {
|
|
|
275
280
|
clz: () => number;
|
|
276
281
|
countTrailingZeros: () => number;
|
|
277
282
|
ctz: () => number;
|
|
278
|
-
notEquals: (other:
|
|
279
|
-
neq: (other:
|
|
280
|
-
ne: (other:
|
|
281
|
-
or: (other:
|
|
283
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
284
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
285
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
286
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
282
287
|
shiftLeft: (numBits: number | Long) => Long;
|
|
283
288
|
shl: (numBits: number | Long) => Long;
|
|
284
289
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -290,8 +295,9 @@ export declare const Msg: {
|
|
|
290
295
|
rotl: (numBits: number | Long) => Long;
|
|
291
296
|
rotateRight: (numBits: number | Long) => Long;
|
|
292
297
|
rotr: (numBits: number | Long) => Long;
|
|
293
|
-
subtract: (subtrahend:
|
|
294
|
-
sub: (subtrahend:
|
|
298
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
299
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
300
|
+
toBigInt: () => bigint;
|
|
295
301
|
toInt: () => number;
|
|
296
302
|
toNumber: () => number;
|
|
297
303
|
toBytes: (le?: boolean) => number[];
|
|
@@ -300,7 +306,7 @@ export declare const Msg: {
|
|
|
300
306
|
toSigned: () => Long;
|
|
301
307
|
toString: (radix?: number) => string;
|
|
302
308
|
toUnsigned: () => Long;
|
|
303
|
-
xor: (other:
|
|
309
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
304
310
|
} & { [K_2 in Exclude<keyof I["readTime"], keyof Long>]: never; });
|
|
305
311
|
receiver?: string;
|
|
306
312
|
} & { [K_3 in Exclude<keyof I, keyof Msg>]: never; }>(base?: I): Msg;
|
|
@@ -318,40 +324,41 @@ export declare const Msg: {
|
|
|
318
324
|
high: number;
|
|
319
325
|
low: number;
|
|
320
326
|
unsigned: boolean;
|
|
321
|
-
add: (addend:
|
|
322
|
-
and: (other:
|
|
323
|
-
compare: (other:
|
|
324
|
-
comp: (other:
|
|
325
|
-
divide: (divisor:
|
|
326
|
-
div: (divisor:
|
|
327
|
-
equals: (other:
|
|
328
|
-
eq: (other:
|
|
327
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
328
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
329
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
330
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
331
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
332
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
333
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
334
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
329
335
|
getHighBits: () => number;
|
|
330
336
|
getHighBitsUnsigned: () => number;
|
|
331
337
|
getLowBits: () => number;
|
|
332
338
|
getLowBitsUnsigned: () => number;
|
|
333
339
|
getNumBitsAbs: () => number;
|
|
334
|
-
greaterThan: (other:
|
|
335
|
-
gt: (other:
|
|
336
|
-
greaterThanOrEqual: (other:
|
|
337
|
-
gte: (other:
|
|
338
|
-
ge: (other:
|
|
340
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
341
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
342
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
343
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
344
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
339
345
|
isEven: () => boolean;
|
|
340
346
|
isNegative: () => boolean;
|
|
341
347
|
isOdd: () => boolean;
|
|
342
348
|
isPositive: () => boolean;
|
|
349
|
+
isSafeInteger: () => boolean;
|
|
343
350
|
isZero: () => boolean;
|
|
344
351
|
eqz: () => boolean;
|
|
345
|
-
lessThan: (other:
|
|
346
|
-
lt: (other:
|
|
347
|
-
lessThanOrEqual: (other:
|
|
348
|
-
lte: (other:
|
|
349
|
-
le: (other:
|
|
350
|
-
modulo: (other:
|
|
351
|
-
mod: (other:
|
|
352
|
-
rem: (other:
|
|
353
|
-
multiply: (multiplier:
|
|
354
|
-
mul: (multiplier:
|
|
352
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
353
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
354
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
355
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
356
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
357
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
358
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
359
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
360
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
361
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
355
362
|
negate: () => Long;
|
|
356
363
|
neg: () => Long;
|
|
357
364
|
not: () => Long;
|
|
@@ -359,10 +366,10 @@ export declare const Msg: {
|
|
|
359
366
|
clz: () => number;
|
|
360
367
|
countTrailingZeros: () => number;
|
|
361
368
|
ctz: () => number;
|
|
362
|
-
notEquals: (other:
|
|
363
|
-
neq: (other:
|
|
364
|
-
ne: (other:
|
|
365
|
-
or: (other:
|
|
369
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
370
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
371
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
372
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
366
373
|
shiftLeft: (numBits: number | Long) => Long;
|
|
367
374
|
shl: (numBits: number | Long) => Long;
|
|
368
375
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -374,8 +381,9 @@ export declare const Msg: {
|
|
|
374
381
|
rotl: (numBits: number | Long) => Long;
|
|
375
382
|
rotateRight: (numBits: number | Long) => Long;
|
|
376
383
|
rotr: (numBits: number | Long) => Long;
|
|
377
|
-
subtract: (subtrahend:
|
|
378
|
-
sub: (subtrahend:
|
|
384
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
385
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
386
|
+
toBigInt: () => bigint;
|
|
379
387
|
toInt: () => number;
|
|
380
388
|
toNumber: () => number;
|
|
381
389
|
toBytes: (le?: boolean) => number[];
|
|
@@ -384,7 +392,7 @@ export declare const Msg: {
|
|
|
384
392
|
toSigned: () => Long;
|
|
385
393
|
toString: (radix?: number) => string;
|
|
386
394
|
toUnsigned: () => Long;
|
|
387
|
-
xor: (other:
|
|
395
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
388
396
|
} & { [K_4 in Exclude<keyof I_1["id"], keyof Long>]: never; });
|
|
389
397
|
messageType?: MsgType;
|
|
390
398
|
title?: string;
|
|
@@ -394,40 +402,41 @@ export declare const Msg: {
|
|
|
394
402
|
high: number;
|
|
395
403
|
low: number;
|
|
396
404
|
unsigned: boolean;
|
|
397
|
-
add: (addend:
|
|
398
|
-
and: (other:
|
|
399
|
-
compare: (other:
|
|
400
|
-
comp: (other:
|
|
401
|
-
divide: (divisor:
|
|
402
|
-
div: (divisor:
|
|
403
|
-
equals: (other:
|
|
404
|
-
eq: (other:
|
|
405
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
406
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
407
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
408
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
409
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
410
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
411
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
412
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
405
413
|
getHighBits: () => number;
|
|
406
414
|
getHighBitsUnsigned: () => number;
|
|
407
415
|
getLowBits: () => number;
|
|
408
416
|
getLowBitsUnsigned: () => number;
|
|
409
417
|
getNumBitsAbs: () => number;
|
|
410
|
-
greaterThan: (other:
|
|
411
|
-
gt: (other:
|
|
412
|
-
greaterThanOrEqual: (other:
|
|
413
|
-
gte: (other:
|
|
414
|
-
ge: (other:
|
|
418
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
419
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
420
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
421
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
422
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
415
423
|
isEven: () => boolean;
|
|
416
424
|
isNegative: () => boolean;
|
|
417
425
|
isOdd: () => boolean;
|
|
418
426
|
isPositive: () => boolean;
|
|
427
|
+
isSafeInteger: () => boolean;
|
|
419
428
|
isZero: () => boolean;
|
|
420
429
|
eqz: () => boolean;
|
|
421
|
-
lessThan: (other:
|
|
422
|
-
lt: (other:
|
|
423
|
-
lessThanOrEqual: (other:
|
|
424
|
-
lte: (other:
|
|
425
|
-
le: (other:
|
|
426
|
-
modulo: (other:
|
|
427
|
-
mod: (other:
|
|
428
|
-
rem: (other:
|
|
429
|
-
multiply: (multiplier:
|
|
430
|
-
mul: (multiplier:
|
|
430
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
431
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
432
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
433
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
434
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
435
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
436
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
437
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
438
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
439
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
431
440
|
negate: () => Long;
|
|
432
441
|
neg: () => Long;
|
|
433
442
|
not: () => Long;
|
|
@@ -435,10 +444,10 @@ export declare const Msg: {
|
|
|
435
444
|
clz: () => number;
|
|
436
445
|
countTrailingZeros: () => number;
|
|
437
446
|
ctz: () => number;
|
|
438
|
-
notEquals: (other:
|
|
439
|
-
neq: (other:
|
|
440
|
-
ne: (other:
|
|
441
|
-
or: (other:
|
|
447
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
448
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
449
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
450
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
442
451
|
shiftLeft: (numBits: number | Long) => Long;
|
|
443
452
|
shl: (numBits: number | Long) => Long;
|
|
444
453
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -450,8 +459,9 @@ export declare const Msg: {
|
|
|
450
459
|
rotl: (numBits: number | Long) => Long;
|
|
451
460
|
rotateRight: (numBits: number | Long) => Long;
|
|
452
461
|
rotr: (numBits: number | Long) => Long;
|
|
453
|
-
subtract: (subtrahend:
|
|
454
|
-
sub: (subtrahend:
|
|
462
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
463
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
464
|
+
toBigInt: () => bigint;
|
|
455
465
|
toInt: () => number;
|
|
456
466
|
toNumber: () => number;
|
|
457
467
|
toBytes: (le?: boolean) => number[];
|
|
@@ -460,46 +470,47 @@ export declare const Msg: {
|
|
|
460
470
|
toSigned: () => Long;
|
|
461
471
|
toString: (radix?: number) => string;
|
|
462
472
|
toUnsigned: () => Long;
|
|
463
|
-
xor: (other:
|
|
473
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
464
474
|
} & { [K_5 in Exclude<keyof I_1["createTime"], keyof Long>]: never; });
|
|
465
475
|
readTime?: string | number | (Long & {
|
|
466
476
|
high: number;
|
|
467
477
|
low: number;
|
|
468
478
|
unsigned: boolean;
|
|
469
|
-
add: (addend:
|
|
470
|
-
and: (other:
|
|
471
|
-
compare: (other:
|
|
472
|
-
comp: (other:
|
|
473
|
-
divide: (divisor:
|
|
474
|
-
div: (divisor:
|
|
475
|
-
equals: (other:
|
|
476
|
-
eq: (other:
|
|
479
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
480
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
481
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
482
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
483
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
484
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
485
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
486
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
477
487
|
getHighBits: () => number;
|
|
478
488
|
getHighBitsUnsigned: () => number;
|
|
479
489
|
getLowBits: () => number;
|
|
480
490
|
getLowBitsUnsigned: () => number;
|
|
481
491
|
getNumBitsAbs: () => number;
|
|
482
|
-
greaterThan: (other:
|
|
483
|
-
gt: (other:
|
|
484
|
-
greaterThanOrEqual: (other:
|
|
485
|
-
gte: (other:
|
|
486
|
-
ge: (other:
|
|
492
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
493
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
494
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
495
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
496
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
487
497
|
isEven: () => boolean;
|
|
488
498
|
isNegative: () => boolean;
|
|
489
499
|
isOdd: () => boolean;
|
|
490
500
|
isPositive: () => boolean;
|
|
501
|
+
isSafeInteger: () => boolean;
|
|
491
502
|
isZero: () => boolean;
|
|
492
503
|
eqz: () => boolean;
|
|
493
|
-
lessThan: (other:
|
|
494
|
-
lt: (other:
|
|
495
|
-
lessThanOrEqual: (other:
|
|
496
|
-
lte: (other:
|
|
497
|
-
le: (other:
|
|
498
|
-
modulo: (other:
|
|
499
|
-
mod: (other:
|
|
500
|
-
rem: (other:
|
|
501
|
-
multiply: (multiplier:
|
|
502
|
-
mul: (multiplier:
|
|
504
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
505
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
506
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
507
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
508
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
509
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
510
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
511
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
512
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
513
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
503
514
|
negate: () => Long;
|
|
504
515
|
neg: () => Long;
|
|
505
516
|
not: () => Long;
|
|
@@ -507,10 +518,10 @@ export declare const Msg: {
|
|
|
507
518
|
clz: () => number;
|
|
508
519
|
countTrailingZeros: () => number;
|
|
509
520
|
ctz: () => number;
|
|
510
|
-
notEquals: (other:
|
|
511
|
-
neq: (other:
|
|
512
|
-
ne: (other:
|
|
513
|
-
or: (other:
|
|
521
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
522
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
523
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
524
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
514
525
|
shiftLeft: (numBits: number | Long) => Long;
|
|
515
526
|
shl: (numBits: number | Long) => Long;
|
|
516
527
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -522,8 +533,9 @@ export declare const Msg: {
|
|
|
522
533
|
rotl: (numBits: number | Long) => Long;
|
|
523
534
|
rotateRight: (numBits: number | Long) => Long;
|
|
524
535
|
rotr: (numBits: number | Long) => Long;
|
|
525
|
-
subtract: (subtrahend:
|
|
526
|
-
sub: (subtrahend:
|
|
536
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
537
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
538
|
+
toBigInt: () => bigint;
|
|
527
539
|
toInt: () => number;
|
|
528
540
|
toNumber: () => number;
|
|
529
541
|
toBytes: (le?: boolean) => number[];
|
|
@@ -532,7 +544,7 @@ export declare const Msg: {
|
|
|
532
544
|
toSigned: () => Long;
|
|
533
545
|
toString: (radix?: number) => string;
|
|
534
546
|
toUnsigned: () => Long;
|
|
535
|
-
xor: (other:
|
|
547
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
536
548
|
} & { [K_6 in Exclude<keyof I_1["readTime"], keyof Long>]: never; });
|
|
537
549
|
receiver?: string;
|
|
538
550
|
} & { [K_7 in Exclude<keyof I_1, keyof Msg>]: never; }>(object: I_1): Msg;
|
|
@@ -577,40 +589,41 @@ export declare const ListMessagesResponse: {
|
|
|
577
589
|
high: number;
|
|
578
590
|
low: number;
|
|
579
591
|
unsigned: boolean;
|
|
580
|
-
add: (addend:
|
|
581
|
-
and: (other:
|
|
582
|
-
compare: (other:
|
|
583
|
-
comp: (other:
|
|
584
|
-
divide: (divisor:
|
|
585
|
-
div: (divisor:
|
|
586
|
-
equals: (other:
|
|
587
|
-
eq: (other:
|
|
592
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
593
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
594
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
595
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
596
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
597
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
598
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
599
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
588
600
|
getHighBits: () => number;
|
|
589
601
|
getHighBitsUnsigned: () => number;
|
|
590
602
|
getLowBits: () => number;
|
|
591
603
|
getLowBitsUnsigned: () => number;
|
|
592
604
|
getNumBitsAbs: () => number;
|
|
593
|
-
greaterThan: (other:
|
|
594
|
-
gt: (other:
|
|
595
|
-
greaterThanOrEqual: (other:
|
|
596
|
-
gte: (other:
|
|
597
|
-
ge: (other:
|
|
605
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
606
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
607
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
608
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
609
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
598
610
|
isEven: () => boolean;
|
|
599
611
|
isNegative: () => boolean;
|
|
600
612
|
isOdd: () => boolean;
|
|
601
613
|
isPositive: () => boolean;
|
|
614
|
+
isSafeInteger: () => boolean;
|
|
602
615
|
isZero: () => boolean;
|
|
603
616
|
eqz: () => boolean;
|
|
604
|
-
lessThan: (other:
|
|
605
|
-
lt: (other:
|
|
606
|
-
lessThanOrEqual: (other:
|
|
607
|
-
lte: (other:
|
|
608
|
-
le: (other:
|
|
609
|
-
modulo: (other:
|
|
610
|
-
mod: (other:
|
|
611
|
-
rem: (other:
|
|
612
|
-
multiply: (multiplier:
|
|
613
|
-
mul: (multiplier:
|
|
617
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
618
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
619
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
620
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
621
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
622
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
623
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
624
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
625
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
626
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
614
627
|
negate: () => Long;
|
|
615
628
|
neg: () => Long;
|
|
616
629
|
not: () => Long;
|
|
@@ -618,10 +631,10 @@ export declare const ListMessagesResponse: {
|
|
|
618
631
|
clz: () => number;
|
|
619
632
|
countTrailingZeros: () => number;
|
|
620
633
|
ctz: () => number;
|
|
621
|
-
notEquals: (other:
|
|
622
|
-
neq: (other:
|
|
623
|
-
ne: (other:
|
|
624
|
-
or: (other:
|
|
634
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
635
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
636
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
637
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
625
638
|
shiftLeft: (numBits: number | Long) => Long;
|
|
626
639
|
shl: (numBits: number | Long) => Long;
|
|
627
640
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -633,8 +646,9 @@ export declare const ListMessagesResponse: {
|
|
|
633
646
|
rotl: (numBits: number | Long) => Long;
|
|
634
647
|
rotateRight: (numBits: number | Long) => Long;
|
|
635
648
|
rotr: (numBits: number | Long) => Long;
|
|
636
|
-
subtract: (subtrahend:
|
|
637
|
-
sub: (subtrahend:
|
|
649
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
650
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
651
|
+
toBigInt: () => bigint;
|
|
638
652
|
toInt: () => number;
|
|
639
653
|
toNumber: () => number;
|
|
640
654
|
toBytes: (le?: boolean) => number[];
|
|
@@ -643,7 +657,7 @@ export declare const ListMessagesResponse: {
|
|
|
643
657
|
toSigned: () => Long;
|
|
644
658
|
toString: (radix?: number) => string;
|
|
645
659
|
toUnsigned: () => Long;
|
|
646
|
-
xor: (other:
|
|
660
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
647
661
|
} & { [K in Exclude<keyof I["msgs"][number]["id"], keyof Long>]: never; });
|
|
648
662
|
messageType?: MsgType;
|
|
649
663
|
title?: string;
|
|
@@ -653,40 +667,41 @@ export declare const ListMessagesResponse: {
|
|
|
653
667
|
high: number;
|
|
654
668
|
low: number;
|
|
655
669
|
unsigned: boolean;
|
|
656
|
-
add: (addend:
|
|
657
|
-
and: (other:
|
|
658
|
-
compare: (other:
|
|
659
|
-
comp: (other:
|
|
660
|
-
divide: (divisor:
|
|
661
|
-
div: (divisor:
|
|
662
|
-
equals: (other:
|
|
663
|
-
eq: (other:
|
|
670
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
671
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
672
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
673
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
674
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
675
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
676
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
677
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
664
678
|
getHighBits: () => number;
|
|
665
679
|
getHighBitsUnsigned: () => number;
|
|
666
680
|
getLowBits: () => number;
|
|
667
681
|
getLowBitsUnsigned: () => number;
|
|
668
682
|
getNumBitsAbs: () => number;
|
|
669
|
-
greaterThan: (other:
|
|
670
|
-
gt: (other:
|
|
671
|
-
greaterThanOrEqual: (other:
|
|
672
|
-
gte: (other:
|
|
673
|
-
ge: (other:
|
|
683
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
684
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
685
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
686
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
687
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
674
688
|
isEven: () => boolean;
|
|
675
689
|
isNegative: () => boolean;
|
|
676
690
|
isOdd: () => boolean;
|
|
677
691
|
isPositive: () => boolean;
|
|
692
|
+
isSafeInteger: () => boolean;
|
|
678
693
|
isZero: () => boolean;
|
|
679
694
|
eqz: () => boolean;
|
|
680
|
-
lessThan: (other:
|
|
681
|
-
lt: (other:
|
|
682
|
-
lessThanOrEqual: (other:
|
|
683
|
-
lte: (other:
|
|
684
|
-
le: (other:
|
|
685
|
-
modulo: (other:
|
|
686
|
-
mod: (other:
|
|
687
|
-
rem: (other:
|
|
688
|
-
multiply: (multiplier:
|
|
689
|
-
mul: (multiplier:
|
|
695
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
696
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
697
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
698
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
699
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
700
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
701
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
702
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
703
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
704
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
690
705
|
negate: () => Long;
|
|
691
706
|
neg: () => Long;
|
|
692
707
|
not: () => Long;
|
|
@@ -694,10 +709,10 @@ export declare const ListMessagesResponse: {
|
|
|
694
709
|
clz: () => number;
|
|
695
710
|
countTrailingZeros: () => number;
|
|
696
711
|
ctz: () => number;
|
|
697
|
-
notEquals: (other:
|
|
698
|
-
neq: (other:
|
|
699
|
-
ne: (other:
|
|
700
|
-
or: (other:
|
|
712
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
713
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
714
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
715
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
701
716
|
shiftLeft: (numBits: number | Long) => Long;
|
|
702
717
|
shl: (numBits: number | Long) => Long;
|
|
703
718
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -709,8 +724,9 @@ export declare const ListMessagesResponse: {
|
|
|
709
724
|
rotl: (numBits: number | Long) => Long;
|
|
710
725
|
rotateRight: (numBits: number | Long) => Long;
|
|
711
726
|
rotr: (numBits: number | Long) => Long;
|
|
712
|
-
subtract: (subtrahend:
|
|
713
|
-
sub: (subtrahend:
|
|
727
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
728
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
729
|
+
toBigInt: () => bigint;
|
|
714
730
|
toInt: () => number;
|
|
715
731
|
toNumber: () => number;
|
|
716
732
|
toBytes: (le?: boolean) => number[];
|
|
@@ -719,46 +735,47 @@ export declare const ListMessagesResponse: {
|
|
|
719
735
|
toSigned: () => Long;
|
|
720
736
|
toString: (radix?: number) => string;
|
|
721
737
|
toUnsigned: () => Long;
|
|
722
|
-
xor: (other:
|
|
738
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
723
739
|
} & { [K_1 in Exclude<keyof I["msgs"][number]["createTime"], keyof Long>]: never; });
|
|
724
740
|
readTime?: string | number | (Long & {
|
|
725
741
|
high: number;
|
|
726
742
|
low: number;
|
|
727
743
|
unsigned: boolean;
|
|
728
|
-
add: (addend:
|
|
729
|
-
and: (other:
|
|
730
|
-
compare: (other:
|
|
731
|
-
comp: (other:
|
|
732
|
-
divide: (divisor:
|
|
733
|
-
div: (divisor:
|
|
734
|
-
equals: (other:
|
|
735
|
-
eq: (other:
|
|
744
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
745
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
746
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
747
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
748
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
749
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
750
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
751
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
736
752
|
getHighBits: () => number;
|
|
737
753
|
getHighBitsUnsigned: () => number;
|
|
738
754
|
getLowBits: () => number;
|
|
739
755
|
getLowBitsUnsigned: () => number;
|
|
740
756
|
getNumBitsAbs: () => number;
|
|
741
|
-
greaterThan: (other:
|
|
742
|
-
gt: (other:
|
|
743
|
-
greaterThanOrEqual: (other:
|
|
744
|
-
gte: (other:
|
|
745
|
-
ge: (other:
|
|
757
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
758
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
759
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
760
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
761
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
746
762
|
isEven: () => boolean;
|
|
747
763
|
isNegative: () => boolean;
|
|
748
764
|
isOdd: () => boolean;
|
|
749
765
|
isPositive: () => boolean;
|
|
766
|
+
isSafeInteger: () => boolean;
|
|
750
767
|
isZero: () => boolean;
|
|
751
768
|
eqz: () => boolean;
|
|
752
|
-
lessThan: (other:
|
|
753
|
-
lt: (other:
|
|
754
|
-
lessThanOrEqual: (other:
|
|
755
|
-
lte: (other:
|
|
756
|
-
le: (other:
|
|
757
|
-
modulo: (other:
|
|
758
|
-
mod: (other:
|
|
759
|
-
rem: (other:
|
|
760
|
-
multiply: (multiplier:
|
|
761
|
-
mul: (multiplier:
|
|
769
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
770
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
771
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
772
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
773
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
774
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
775
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
776
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
777
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
778
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
762
779
|
negate: () => Long;
|
|
763
780
|
neg: () => Long;
|
|
764
781
|
not: () => Long;
|
|
@@ -766,10 +783,10 @@ export declare const ListMessagesResponse: {
|
|
|
766
783
|
clz: () => number;
|
|
767
784
|
countTrailingZeros: () => number;
|
|
768
785
|
ctz: () => number;
|
|
769
|
-
notEquals: (other:
|
|
770
|
-
neq: (other:
|
|
771
|
-
ne: (other:
|
|
772
|
-
or: (other:
|
|
786
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
787
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
788
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
789
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
773
790
|
shiftLeft: (numBits: number | Long) => Long;
|
|
774
791
|
shl: (numBits: number | Long) => Long;
|
|
775
792
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -781,8 +798,9 @@ export declare const ListMessagesResponse: {
|
|
|
781
798
|
rotl: (numBits: number | Long) => Long;
|
|
782
799
|
rotateRight: (numBits: number | Long) => Long;
|
|
783
800
|
rotr: (numBits: number | Long) => Long;
|
|
784
|
-
subtract: (subtrahend:
|
|
785
|
-
sub: (subtrahend:
|
|
801
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
802
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
803
|
+
toBigInt: () => bigint;
|
|
786
804
|
toInt: () => number;
|
|
787
805
|
toNumber: () => number;
|
|
788
806
|
toBytes: (le?: boolean) => number[];
|
|
@@ -791,7 +809,7 @@ export declare const ListMessagesResponse: {
|
|
|
791
809
|
toSigned: () => Long;
|
|
792
810
|
toString: (radix?: number) => string;
|
|
793
811
|
toUnsigned: () => Long;
|
|
794
|
-
xor: (other:
|
|
812
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
795
813
|
} & { [K_2 in Exclude<keyof I["msgs"][number]["readTime"], keyof Long>]: never; });
|
|
796
814
|
receiver?: string;
|
|
797
815
|
} & { [K_3 in Exclude<keyof I["msgs"][number], keyof Msg>]: never; })[] & { [K_4 in Exclude<keyof I["msgs"], keyof {
|
|
@@ -840,40 +858,41 @@ export declare const ListMessagesResponse: {
|
|
|
840
858
|
high: number;
|
|
841
859
|
low: number;
|
|
842
860
|
unsigned: boolean;
|
|
843
|
-
add: (addend:
|
|
844
|
-
and: (other:
|
|
845
|
-
compare: (other:
|
|
846
|
-
comp: (other:
|
|
847
|
-
divide: (divisor:
|
|
848
|
-
div: (divisor:
|
|
849
|
-
equals: (other:
|
|
850
|
-
eq: (other:
|
|
861
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
862
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
863
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
864
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
865
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
866
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
867
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
868
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
851
869
|
getHighBits: () => number;
|
|
852
870
|
getHighBitsUnsigned: () => number;
|
|
853
871
|
getLowBits: () => number;
|
|
854
872
|
getLowBitsUnsigned: () => number;
|
|
855
873
|
getNumBitsAbs: () => number;
|
|
856
|
-
greaterThan: (other:
|
|
857
|
-
gt: (other:
|
|
858
|
-
greaterThanOrEqual: (other:
|
|
859
|
-
gte: (other:
|
|
860
|
-
ge: (other:
|
|
874
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
875
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
876
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
877
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
878
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
861
879
|
isEven: () => boolean;
|
|
862
880
|
isNegative: () => boolean;
|
|
863
881
|
isOdd: () => boolean;
|
|
864
882
|
isPositive: () => boolean;
|
|
883
|
+
isSafeInteger: () => boolean;
|
|
865
884
|
isZero: () => boolean;
|
|
866
885
|
eqz: () => boolean;
|
|
867
|
-
lessThan: (other:
|
|
868
|
-
lt: (other:
|
|
869
|
-
lessThanOrEqual: (other:
|
|
870
|
-
lte: (other:
|
|
871
|
-
le: (other:
|
|
872
|
-
modulo: (other:
|
|
873
|
-
mod: (other:
|
|
874
|
-
rem: (other:
|
|
875
|
-
multiply: (multiplier:
|
|
876
|
-
mul: (multiplier:
|
|
886
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
887
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
888
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
889
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
890
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
891
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
892
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
893
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
894
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
895
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
877
896
|
negate: () => Long;
|
|
878
897
|
neg: () => Long;
|
|
879
898
|
not: () => Long;
|
|
@@ -881,10 +900,10 @@ export declare const ListMessagesResponse: {
|
|
|
881
900
|
clz: () => number;
|
|
882
901
|
countTrailingZeros: () => number;
|
|
883
902
|
ctz: () => number;
|
|
884
|
-
notEquals: (other:
|
|
885
|
-
neq: (other:
|
|
886
|
-
ne: (other:
|
|
887
|
-
or: (other:
|
|
903
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
904
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
905
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
906
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
888
907
|
shiftLeft: (numBits: number | Long) => Long;
|
|
889
908
|
shl: (numBits: number | Long) => Long;
|
|
890
909
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -896,8 +915,9 @@ export declare const ListMessagesResponse: {
|
|
|
896
915
|
rotl: (numBits: number | Long) => Long;
|
|
897
916
|
rotateRight: (numBits: number | Long) => Long;
|
|
898
917
|
rotr: (numBits: number | Long) => Long;
|
|
899
|
-
subtract: (subtrahend:
|
|
900
|
-
sub: (subtrahend:
|
|
918
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
919
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
920
|
+
toBigInt: () => bigint;
|
|
901
921
|
toInt: () => number;
|
|
902
922
|
toNumber: () => number;
|
|
903
923
|
toBytes: (le?: boolean) => number[];
|
|
@@ -906,7 +926,7 @@ export declare const ListMessagesResponse: {
|
|
|
906
926
|
toSigned: () => Long;
|
|
907
927
|
toString: (radix?: number) => string;
|
|
908
928
|
toUnsigned: () => Long;
|
|
909
|
-
xor: (other:
|
|
929
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
910
930
|
} & { [K_6 in Exclude<keyof I_1["msgs"][number]["id"], keyof Long>]: never; });
|
|
911
931
|
messageType?: MsgType;
|
|
912
932
|
title?: string;
|
|
@@ -916,40 +936,41 @@ export declare const ListMessagesResponse: {
|
|
|
916
936
|
high: number;
|
|
917
937
|
low: number;
|
|
918
938
|
unsigned: boolean;
|
|
919
|
-
add: (addend:
|
|
920
|
-
and: (other:
|
|
921
|
-
compare: (other:
|
|
922
|
-
comp: (other:
|
|
923
|
-
divide: (divisor:
|
|
924
|
-
div: (divisor:
|
|
925
|
-
equals: (other:
|
|
926
|
-
eq: (other:
|
|
939
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
940
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
941
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
942
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
943
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
944
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
945
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
946
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
927
947
|
getHighBits: () => number;
|
|
928
948
|
getHighBitsUnsigned: () => number;
|
|
929
949
|
getLowBits: () => number;
|
|
930
950
|
getLowBitsUnsigned: () => number;
|
|
931
951
|
getNumBitsAbs: () => number;
|
|
932
|
-
greaterThan: (other:
|
|
933
|
-
gt: (other:
|
|
934
|
-
greaterThanOrEqual: (other:
|
|
935
|
-
gte: (other:
|
|
936
|
-
ge: (other:
|
|
952
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
953
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
954
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
955
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
956
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
937
957
|
isEven: () => boolean;
|
|
938
958
|
isNegative: () => boolean;
|
|
939
959
|
isOdd: () => boolean;
|
|
940
960
|
isPositive: () => boolean;
|
|
961
|
+
isSafeInteger: () => boolean;
|
|
941
962
|
isZero: () => boolean;
|
|
942
963
|
eqz: () => boolean;
|
|
943
|
-
lessThan: (other:
|
|
944
|
-
lt: (other:
|
|
945
|
-
lessThanOrEqual: (other:
|
|
946
|
-
lte: (other:
|
|
947
|
-
le: (other:
|
|
948
|
-
modulo: (other:
|
|
949
|
-
mod: (other:
|
|
950
|
-
rem: (other:
|
|
951
|
-
multiply: (multiplier:
|
|
952
|
-
mul: (multiplier:
|
|
964
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
965
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
966
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
967
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
968
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
969
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
970
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
971
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
972
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
973
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
953
974
|
negate: () => Long;
|
|
954
975
|
neg: () => Long;
|
|
955
976
|
not: () => Long;
|
|
@@ -957,10 +978,10 @@ export declare const ListMessagesResponse: {
|
|
|
957
978
|
clz: () => number;
|
|
958
979
|
countTrailingZeros: () => number;
|
|
959
980
|
ctz: () => number;
|
|
960
|
-
notEquals: (other:
|
|
961
|
-
neq: (other:
|
|
962
|
-
ne: (other:
|
|
963
|
-
or: (other:
|
|
981
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
982
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
983
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
984
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
964
985
|
shiftLeft: (numBits: number | Long) => Long;
|
|
965
986
|
shl: (numBits: number | Long) => Long;
|
|
966
987
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -972,8 +993,9 @@ export declare const ListMessagesResponse: {
|
|
|
972
993
|
rotl: (numBits: number | Long) => Long;
|
|
973
994
|
rotateRight: (numBits: number | Long) => Long;
|
|
974
995
|
rotr: (numBits: number | Long) => Long;
|
|
975
|
-
subtract: (subtrahend:
|
|
976
|
-
sub: (subtrahend:
|
|
996
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
997
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
998
|
+
toBigInt: () => bigint;
|
|
977
999
|
toInt: () => number;
|
|
978
1000
|
toNumber: () => number;
|
|
979
1001
|
toBytes: (le?: boolean) => number[];
|
|
@@ -982,46 +1004,47 @@ export declare const ListMessagesResponse: {
|
|
|
982
1004
|
toSigned: () => Long;
|
|
983
1005
|
toString: (radix?: number) => string;
|
|
984
1006
|
toUnsigned: () => Long;
|
|
985
|
-
xor: (other:
|
|
1007
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
986
1008
|
} & { [K_7 in Exclude<keyof I_1["msgs"][number]["createTime"], keyof Long>]: never; });
|
|
987
1009
|
readTime?: string | number | (Long & {
|
|
988
1010
|
high: number;
|
|
989
1011
|
low: number;
|
|
990
1012
|
unsigned: boolean;
|
|
991
|
-
add: (addend:
|
|
992
|
-
and: (other:
|
|
993
|
-
compare: (other:
|
|
994
|
-
comp: (other:
|
|
995
|
-
divide: (divisor:
|
|
996
|
-
div: (divisor:
|
|
997
|
-
equals: (other:
|
|
998
|
-
eq: (other:
|
|
1013
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
1014
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
1015
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
1016
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
1017
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
1018
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
1019
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
1020
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
999
1021
|
getHighBits: () => number;
|
|
1000
1022
|
getHighBitsUnsigned: () => number;
|
|
1001
1023
|
getLowBits: () => number;
|
|
1002
1024
|
getLowBitsUnsigned: () => number;
|
|
1003
1025
|
getNumBitsAbs: () => number;
|
|
1004
|
-
greaterThan: (other:
|
|
1005
|
-
gt: (other:
|
|
1006
|
-
greaterThanOrEqual: (other:
|
|
1007
|
-
gte: (other:
|
|
1008
|
-
ge: (other:
|
|
1026
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
1027
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
1028
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
1029
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
1030
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
1009
1031
|
isEven: () => boolean;
|
|
1010
1032
|
isNegative: () => boolean;
|
|
1011
1033
|
isOdd: () => boolean;
|
|
1012
1034
|
isPositive: () => boolean;
|
|
1035
|
+
isSafeInteger: () => boolean;
|
|
1013
1036
|
isZero: () => boolean;
|
|
1014
1037
|
eqz: () => boolean;
|
|
1015
|
-
lessThan: (other:
|
|
1016
|
-
lt: (other:
|
|
1017
|
-
lessThanOrEqual: (other:
|
|
1018
|
-
lte: (other:
|
|
1019
|
-
le: (other:
|
|
1020
|
-
modulo: (other:
|
|
1021
|
-
mod: (other:
|
|
1022
|
-
rem: (other:
|
|
1023
|
-
multiply: (multiplier:
|
|
1024
|
-
mul: (multiplier:
|
|
1038
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
1039
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
1040
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
1041
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
1042
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
1043
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
1044
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
1045
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
1046
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
1047
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
1025
1048
|
negate: () => Long;
|
|
1026
1049
|
neg: () => Long;
|
|
1027
1050
|
not: () => Long;
|
|
@@ -1029,10 +1052,10 @@ export declare const ListMessagesResponse: {
|
|
|
1029
1052
|
clz: () => number;
|
|
1030
1053
|
countTrailingZeros: () => number;
|
|
1031
1054
|
ctz: () => number;
|
|
1032
|
-
notEquals: (other:
|
|
1033
|
-
neq: (other:
|
|
1034
|
-
ne: (other:
|
|
1035
|
-
or: (other:
|
|
1055
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
1056
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
1057
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
1058
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
1036
1059
|
shiftLeft: (numBits: number | Long) => Long;
|
|
1037
1060
|
shl: (numBits: number | Long) => Long;
|
|
1038
1061
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -1044,8 +1067,9 @@ export declare const ListMessagesResponse: {
|
|
|
1044
1067
|
rotl: (numBits: number | Long) => Long;
|
|
1045
1068
|
rotateRight: (numBits: number | Long) => Long;
|
|
1046
1069
|
rotr: (numBits: number | Long) => Long;
|
|
1047
|
-
subtract: (subtrahend:
|
|
1048
|
-
sub: (subtrahend:
|
|
1070
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1071
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1072
|
+
toBigInt: () => bigint;
|
|
1049
1073
|
toInt: () => number;
|
|
1050
1074
|
toNumber: () => number;
|
|
1051
1075
|
toBytes: (le?: boolean) => number[];
|
|
@@ -1054,7 +1078,7 @@ export declare const ListMessagesResponse: {
|
|
|
1054
1078
|
toSigned: () => Long;
|
|
1055
1079
|
toString: (radix?: number) => string;
|
|
1056
1080
|
toUnsigned: () => Long;
|
|
1057
|
-
xor: (other:
|
|
1081
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
1058
1082
|
} & { [K_8 in Exclude<keyof I_1["msgs"][number]["readTime"], keyof Long>]: never; });
|
|
1059
1083
|
receiver?: string;
|
|
1060
1084
|
} & { [K_9 in Exclude<keyof I_1["msgs"][number], keyof Msg>]: never; })[] & { [K_10 in Exclude<keyof I_1["msgs"], keyof {
|
|
@@ -1129,40 +1153,41 @@ export declare const NewMessageResponse: {
|
|
|
1129
1153
|
high: number;
|
|
1130
1154
|
low: number;
|
|
1131
1155
|
unsigned: boolean;
|
|
1132
|
-
add: (addend:
|
|
1133
|
-
and: (other:
|
|
1134
|
-
compare: (other:
|
|
1135
|
-
comp: (other:
|
|
1136
|
-
divide: (divisor:
|
|
1137
|
-
div: (divisor:
|
|
1138
|
-
equals: (other:
|
|
1139
|
-
eq: (other:
|
|
1156
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
1157
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
1158
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
1159
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
1160
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
1161
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
1162
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
1163
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
1140
1164
|
getHighBits: () => number;
|
|
1141
1165
|
getHighBitsUnsigned: () => number;
|
|
1142
1166
|
getLowBits: () => number;
|
|
1143
1167
|
getLowBitsUnsigned: () => number;
|
|
1144
1168
|
getNumBitsAbs: () => number;
|
|
1145
|
-
greaterThan: (other:
|
|
1146
|
-
gt: (other:
|
|
1147
|
-
greaterThanOrEqual: (other:
|
|
1148
|
-
gte: (other:
|
|
1149
|
-
ge: (other:
|
|
1169
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
1170
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
1171
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
1172
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
1173
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
1150
1174
|
isEven: () => boolean;
|
|
1151
1175
|
isNegative: () => boolean;
|
|
1152
1176
|
isOdd: () => boolean;
|
|
1153
1177
|
isPositive: () => boolean;
|
|
1178
|
+
isSafeInteger: () => boolean;
|
|
1154
1179
|
isZero: () => boolean;
|
|
1155
1180
|
eqz: () => boolean;
|
|
1156
|
-
lessThan: (other:
|
|
1157
|
-
lt: (other:
|
|
1158
|
-
lessThanOrEqual: (other:
|
|
1159
|
-
lte: (other:
|
|
1160
|
-
le: (other:
|
|
1161
|
-
modulo: (other:
|
|
1162
|
-
mod: (other:
|
|
1163
|
-
rem: (other:
|
|
1164
|
-
multiply: (multiplier:
|
|
1165
|
-
mul: (multiplier:
|
|
1181
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
1182
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
1183
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
1184
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
1185
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
1186
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
1187
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
1188
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
1189
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
1190
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
1166
1191
|
negate: () => Long;
|
|
1167
1192
|
neg: () => Long;
|
|
1168
1193
|
not: () => Long;
|
|
@@ -1170,10 +1195,10 @@ export declare const NewMessageResponse: {
|
|
|
1170
1195
|
clz: () => number;
|
|
1171
1196
|
countTrailingZeros: () => number;
|
|
1172
1197
|
ctz: () => number;
|
|
1173
|
-
notEquals: (other:
|
|
1174
|
-
neq: (other:
|
|
1175
|
-
ne: (other:
|
|
1176
|
-
or: (other:
|
|
1198
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
1199
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
1200
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
1201
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
1177
1202
|
shiftLeft: (numBits: number | Long) => Long;
|
|
1178
1203
|
shl: (numBits: number | Long) => Long;
|
|
1179
1204
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -1185,8 +1210,9 @@ export declare const NewMessageResponse: {
|
|
|
1185
1210
|
rotl: (numBits: number | Long) => Long;
|
|
1186
1211
|
rotateRight: (numBits: number | Long) => Long;
|
|
1187
1212
|
rotr: (numBits: number | Long) => Long;
|
|
1188
|
-
subtract: (subtrahend:
|
|
1189
|
-
sub: (subtrahend:
|
|
1213
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1214
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1215
|
+
toBigInt: () => bigint;
|
|
1190
1216
|
toInt: () => number;
|
|
1191
1217
|
toNumber: () => number;
|
|
1192
1218
|
toBytes: (le?: boolean) => number[];
|
|
@@ -1195,7 +1221,7 @@ export declare const NewMessageResponse: {
|
|
|
1195
1221
|
toSigned: () => Long;
|
|
1196
1222
|
toString: (radix?: number) => string;
|
|
1197
1223
|
toUnsigned: () => Long;
|
|
1198
|
-
xor: (other:
|
|
1224
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
1199
1225
|
} & { [K in Exclude<keyof I["id"], keyof Long>]: never; });
|
|
1200
1226
|
} & { [K_1 in Exclude<keyof I, "id">]: never; }>(base?: I): NewMessageResponse;
|
|
1201
1227
|
fromPartial<I_1 extends {
|
|
@@ -1205,40 +1231,41 @@ export declare const NewMessageResponse: {
|
|
|
1205
1231
|
high: number;
|
|
1206
1232
|
low: number;
|
|
1207
1233
|
unsigned: boolean;
|
|
1208
|
-
add: (addend:
|
|
1209
|
-
and: (other:
|
|
1210
|
-
compare: (other:
|
|
1211
|
-
comp: (other:
|
|
1212
|
-
divide: (divisor:
|
|
1213
|
-
div: (divisor:
|
|
1214
|
-
equals: (other:
|
|
1215
|
-
eq: (other:
|
|
1234
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
1235
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
1236
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
1237
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
1238
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
1239
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
1240
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
1241
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
1216
1242
|
getHighBits: () => number;
|
|
1217
1243
|
getHighBitsUnsigned: () => number;
|
|
1218
1244
|
getLowBits: () => number;
|
|
1219
1245
|
getLowBitsUnsigned: () => number;
|
|
1220
1246
|
getNumBitsAbs: () => number;
|
|
1221
|
-
greaterThan: (other:
|
|
1222
|
-
gt: (other:
|
|
1223
|
-
greaterThanOrEqual: (other:
|
|
1224
|
-
gte: (other:
|
|
1225
|
-
ge: (other:
|
|
1247
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
1248
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
1249
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
1250
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
1251
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
1226
1252
|
isEven: () => boolean;
|
|
1227
1253
|
isNegative: () => boolean;
|
|
1228
1254
|
isOdd: () => boolean;
|
|
1229
1255
|
isPositive: () => boolean;
|
|
1256
|
+
isSafeInteger: () => boolean;
|
|
1230
1257
|
isZero: () => boolean;
|
|
1231
1258
|
eqz: () => boolean;
|
|
1232
|
-
lessThan: (other:
|
|
1233
|
-
lt: (other:
|
|
1234
|
-
lessThanOrEqual: (other:
|
|
1235
|
-
lte: (other:
|
|
1236
|
-
le: (other:
|
|
1237
|
-
modulo: (other:
|
|
1238
|
-
mod: (other:
|
|
1239
|
-
rem: (other:
|
|
1240
|
-
multiply: (multiplier:
|
|
1241
|
-
mul: (multiplier:
|
|
1259
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
1260
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
1261
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
1262
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
1263
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
1264
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
1265
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
1266
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
1267
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
1268
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
1242
1269
|
negate: () => Long;
|
|
1243
1270
|
neg: () => Long;
|
|
1244
1271
|
not: () => Long;
|
|
@@ -1246,10 +1273,10 @@ export declare const NewMessageResponse: {
|
|
|
1246
1273
|
clz: () => number;
|
|
1247
1274
|
countTrailingZeros: () => number;
|
|
1248
1275
|
ctz: () => number;
|
|
1249
|
-
notEquals: (other:
|
|
1250
|
-
neq: (other:
|
|
1251
|
-
ne: (other:
|
|
1252
|
-
or: (other:
|
|
1276
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
1277
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
1278
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
1279
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
1253
1280
|
shiftLeft: (numBits: number | Long) => Long;
|
|
1254
1281
|
shl: (numBits: number | Long) => Long;
|
|
1255
1282
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -1261,8 +1288,9 @@ export declare const NewMessageResponse: {
|
|
|
1261
1288
|
rotl: (numBits: number | Long) => Long;
|
|
1262
1289
|
rotateRight: (numBits: number | Long) => Long;
|
|
1263
1290
|
rotr: (numBits: number | Long) => Long;
|
|
1264
|
-
subtract: (subtrahend:
|
|
1265
|
-
sub: (subtrahend:
|
|
1291
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1292
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1293
|
+
toBigInt: () => bigint;
|
|
1266
1294
|
toInt: () => number;
|
|
1267
1295
|
toNumber: () => number;
|
|
1268
1296
|
toBytes: (le?: boolean) => number[];
|
|
@@ -1271,7 +1299,7 @@ export declare const NewMessageResponse: {
|
|
|
1271
1299
|
toSigned: () => Long;
|
|
1272
1300
|
toString: (radix?: number) => string;
|
|
1273
1301
|
toUnsigned: () => Long;
|
|
1274
|
-
xor: (other:
|
|
1302
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
1275
1303
|
} & { [K_2 in Exclude<keyof I_1["id"], keyof Long>]: never; });
|
|
1276
1304
|
} & { [K_3 in Exclude<keyof I_1, "id">]: never; }>(object: I_1): NewMessageResponse;
|
|
1277
1305
|
};
|