@lazycatcloud/sdk 0.1.527 → 0.1.530
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 +600 -640
- package/dist/common/box.d.ts.map +1 -1
- package/dist/common/file_handler.d.ts +960 -1024
- package/dist/common/file_handler.d.ts.map +1 -1
- package/dist/common/filetrans.d.ts +2520 -2688
- package/dist/common/filetrans.d.ts.map +1 -1
- package/dist/common/iscsi.d.ts +180 -192
- package/dist/common/iscsi.d.ts.map +1 -1
- package/dist/common/media_meta.d.ts +60 -64
- package/dist/common/media_meta.d.ts.map +1 -1
- package/dist/common/message.d.ts +420 -448
- package/dist/common/message.d.ts.map +1 -1
- package/dist/common/peripheral_device.d.ts +360 -384
- package/dist/common/peripheral_device.d.ts.map +1 -1
- package/dist/extentions/app_common.d.ts +26 -10
- package/dist/extentions/app_common.d.ts.map +1 -1
- package/dist/extentions/app_common.js +77 -22
- package/dist/extentions/app_common.js.map +1 -1
- package/dist/extentions/index.d.ts +1 -0
- package/dist/extentions/index.d.ts.map +1 -1
- package/dist/extentions/index.js.map +1 -1
- package/dist/google/protobuf/descriptor.d.ts +2280 -2432
- package/dist/google/protobuf/descriptor.d.ts.map +1 -1
- package/dist/google/protobuf/timestamp.d.ts +60 -64
- package/dist/google/protobuf/timestamp.d.ts.map +1 -1
- package/dist/localdevice/client.d.ts +60 -64
- package/dist/localdevice/client.d.ts.map +1 -1
- package/dist/localdevice/contacts.d.ts +60 -64
- package/dist/localdevice/contacts.d.ts.map +1 -1
- package/dist/localdevice/photo.d.ts +240 -256
- package/dist/localdevice/photo.d.ts.map +1 -1
- package/dist/package.json +1 -1
- package/dist/sys/btrfs.d.ts +180 -192
- package/dist/sys/btrfs.d.ts.map +1 -1
- package/dist/sys/hal.d.ts +120 -128
- package/dist/sys/hal.d.ts.map +1 -1
- package/dist/sys/ingress.d.ts +60 -64
- package/dist/sys/ingress.d.ts.map +1 -1
- package/dist/sys/network_manager.d.ts +180 -192
- package/dist/sys/network_manager.d.ts.map +1 -1
- package/dist/sys/package_manager.d.ts +8700 -9280
- package/dist/sys/package_manager.d.ts.map +1 -1
- package/dist/sys/stats/cgroup_metrics.d.ts +8220 -8768
- package/dist/sys/stats/cgroup_metrics.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -268,41 +268,40 @@ export declare const PutPhotoReply: {
|
|
|
268
268
|
high: number;
|
|
269
269
|
low: number;
|
|
270
270
|
unsigned: boolean;
|
|
271
|
-
add: (addend:
|
|
272
|
-
and: (other:
|
|
273
|
-
compare: (other:
|
|
274
|
-
comp: (other:
|
|
275
|
-
divide: (divisor:
|
|
276
|
-
div: (divisor:
|
|
277
|
-
equals: (other:
|
|
278
|
-
eq: (other:
|
|
271
|
+
add: (addend: string | number | Long) => Long;
|
|
272
|
+
and: (other: string | number | Long) => Long;
|
|
273
|
+
compare: (other: string | number | Long) => number;
|
|
274
|
+
comp: (other: string | number | Long) => number;
|
|
275
|
+
divide: (divisor: string | number | Long) => Long;
|
|
276
|
+
div: (divisor: string | number | Long) => Long;
|
|
277
|
+
equals: (other: string | number | Long) => boolean;
|
|
278
|
+
eq: (other: string | number | Long) => boolean;
|
|
279
279
|
getHighBits: () => number;
|
|
280
280
|
getHighBitsUnsigned: () => number;
|
|
281
281
|
getLowBits: () => number;
|
|
282
282
|
getLowBitsUnsigned: () => number;
|
|
283
283
|
getNumBitsAbs: () => number;
|
|
284
|
-
greaterThan: (other:
|
|
285
|
-
gt: (other:
|
|
286
|
-
greaterThanOrEqual: (other:
|
|
287
|
-
gte: (other:
|
|
288
|
-
ge: (other:
|
|
284
|
+
greaterThan: (other: string | number | Long) => boolean;
|
|
285
|
+
gt: (other: string | number | Long) => boolean;
|
|
286
|
+
greaterThanOrEqual: (other: string | number | Long) => boolean;
|
|
287
|
+
gte: (other: string | number | Long) => boolean;
|
|
288
|
+
ge: (other: string | number | Long) => boolean;
|
|
289
289
|
isEven: () => boolean;
|
|
290
290
|
isNegative: () => boolean;
|
|
291
291
|
isOdd: () => boolean;
|
|
292
292
|
isPositive: () => boolean;
|
|
293
|
-
isSafeInteger: () => boolean;
|
|
294
293
|
isZero: () => boolean;
|
|
295
294
|
eqz: () => boolean;
|
|
296
|
-
lessThan: (other:
|
|
297
|
-
lt: (other:
|
|
298
|
-
lessThanOrEqual: (other:
|
|
299
|
-
lte: (other:
|
|
300
|
-
le: (other:
|
|
301
|
-
modulo: (other:
|
|
302
|
-
mod: (other:
|
|
303
|
-
rem: (other:
|
|
304
|
-
multiply: (multiplier:
|
|
305
|
-
mul: (multiplier:
|
|
295
|
+
lessThan: (other: string | number | Long) => boolean;
|
|
296
|
+
lt: (other: string | number | Long) => boolean;
|
|
297
|
+
lessThanOrEqual: (other: string | number | Long) => boolean;
|
|
298
|
+
lte: (other: string | number | Long) => boolean;
|
|
299
|
+
le: (other: string | number | Long) => boolean;
|
|
300
|
+
modulo: (other: string | number | Long) => Long;
|
|
301
|
+
mod: (other: string | number | Long) => Long;
|
|
302
|
+
rem: (other: string | number | Long) => Long;
|
|
303
|
+
multiply: (multiplier: string | number | Long) => Long;
|
|
304
|
+
mul: (multiplier: string | number | Long) => Long;
|
|
306
305
|
negate: () => Long;
|
|
307
306
|
neg: () => Long;
|
|
308
307
|
not: () => Long;
|
|
@@ -310,10 +309,10 @@ export declare const PutPhotoReply: {
|
|
|
310
309
|
clz: () => number;
|
|
311
310
|
countTrailingZeros: () => number;
|
|
312
311
|
ctz: () => number;
|
|
313
|
-
notEquals: (other:
|
|
314
|
-
neq: (other:
|
|
315
|
-
ne: (other:
|
|
316
|
-
or: (other:
|
|
312
|
+
notEquals: (other: string | number | Long) => boolean;
|
|
313
|
+
neq: (other: string | number | Long) => boolean;
|
|
314
|
+
ne: (other: string | number | Long) => boolean;
|
|
315
|
+
or: (other: string | number | Long) => Long;
|
|
317
316
|
shiftLeft: (numBits: number | Long) => Long;
|
|
318
317
|
shl: (numBits: number | Long) => Long;
|
|
319
318
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -325,9 +324,8 @@ export declare const PutPhotoReply: {
|
|
|
325
324
|
rotl: (numBits: number | Long) => Long;
|
|
326
325
|
rotateRight: (numBits: number | Long) => Long;
|
|
327
326
|
rotr: (numBits: number | Long) => Long;
|
|
328
|
-
subtract: (subtrahend:
|
|
329
|
-
sub: (subtrahend:
|
|
330
|
-
toBigInt: () => bigint;
|
|
327
|
+
subtract: (subtrahend: string | number | Long) => Long;
|
|
328
|
+
sub: (subtrahend: string | number | Long) => Long;
|
|
331
329
|
toInt: () => number;
|
|
332
330
|
toNumber: () => number;
|
|
333
331
|
toBytes: (le?: boolean) => number[];
|
|
@@ -336,47 +334,46 @@ export declare const PutPhotoReply: {
|
|
|
336
334
|
toSigned: () => Long;
|
|
337
335
|
toString: (radix?: number) => string;
|
|
338
336
|
toUnsigned: () => Long;
|
|
339
|
-
xor: (other:
|
|
337
|
+
xor: (other: string | number | Long) => Long;
|
|
340
338
|
} & { [K in Exclude<keyof I["totalSize"], keyof Long>]: never; });
|
|
341
339
|
fetchedSize?: string | number | (Long & {
|
|
342
340
|
high: number;
|
|
343
341
|
low: number;
|
|
344
342
|
unsigned: boolean;
|
|
345
|
-
add: (addend:
|
|
346
|
-
and: (other:
|
|
347
|
-
compare: (other:
|
|
348
|
-
comp: (other:
|
|
349
|
-
divide: (divisor:
|
|
350
|
-
div: (divisor:
|
|
351
|
-
equals: (other:
|
|
352
|
-
eq: (other:
|
|
343
|
+
add: (addend: string | number | Long) => Long;
|
|
344
|
+
and: (other: string | number | Long) => Long;
|
|
345
|
+
compare: (other: string | number | Long) => number;
|
|
346
|
+
comp: (other: string | number | Long) => number;
|
|
347
|
+
divide: (divisor: string | number | Long) => Long;
|
|
348
|
+
div: (divisor: string | number | Long) => Long;
|
|
349
|
+
equals: (other: string | number | Long) => boolean;
|
|
350
|
+
eq: (other: string | number | Long) => boolean;
|
|
353
351
|
getHighBits: () => number;
|
|
354
352
|
getHighBitsUnsigned: () => number;
|
|
355
353
|
getLowBits: () => number;
|
|
356
354
|
getLowBitsUnsigned: () => number;
|
|
357
355
|
getNumBitsAbs: () => number;
|
|
358
|
-
greaterThan: (other:
|
|
359
|
-
gt: (other:
|
|
360
|
-
greaterThanOrEqual: (other:
|
|
361
|
-
gte: (other:
|
|
362
|
-
ge: (other:
|
|
356
|
+
greaterThan: (other: string | number | Long) => boolean;
|
|
357
|
+
gt: (other: string | number | Long) => boolean;
|
|
358
|
+
greaterThanOrEqual: (other: string | number | Long) => boolean;
|
|
359
|
+
gte: (other: string | number | Long) => boolean;
|
|
360
|
+
ge: (other: string | number | Long) => boolean;
|
|
363
361
|
isEven: () => boolean;
|
|
364
362
|
isNegative: () => boolean;
|
|
365
363
|
isOdd: () => boolean;
|
|
366
364
|
isPositive: () => boolean;
|
|
367
|
-
isSafeInteger: () => boolean;
|
|
368
365
|
isZero: () => boolean;
|
|
369
366
|
eqz: () => boolean;
|
|
370
|
-
lessThan: (other:
|
|
371
|
-
lt: (other:
|
|
372
|
-
lessThanOrEqual: (other:
|
|
373
|
-
lte: (other:
|
|
374
|
-
le: (other:
|
|
375
|
-
modulo: (other:
|
|
376
|
-
mod: (other:
|
|
377
|
-
rem: (other:
|
|
378
|
-
multiply: (multiplier:
|
|
379
|
-
mul: (multiplier:
|
|
367
|
+
lessThan: (other: string | number | Long) => boolean;
|
|
368
|
+
lt: (other: string | number | Long) => boolean;
|
|
369
|
+
lessThanOrEqual: (other: string | number | Long) => boolean;
|
|
370
|
+
lte: (other: string | number | Long) => boolean;
|
|
371
|
+
le: (other: string | number | Long) => boolean;
|
|
372
|
+
modulo: (other: string | number | Long) => Long;
|
|
373
|
+
mod: (other: string | number | Long) => Long;
|
|
374
|
+
rem: (other: string | number | Long) => Long;
|
|
375
|
+
multiply: (multiplier: string | number | Long) => Long;
|
|
376
|
+
mul: (multiplier: string | number | Long) => Long;
|
|
380
377
|
negate: () => Long;
|
|
381
378
|
neg: () => Long;
|
|
382
379
|
not: () => Long;
|
|
@@ -384,10 +381,10 @@ export declare const PutPhotoReply: {
|
|
|
384
381
|
clz: () => number;
|
|
385
382
|
countTrailingZeros: () => number;
|
|
386
383
|
ctz: () => number;
|
|
387
|
-
notEquals: (other:
|
|
388
|
-
neq: (other:
|
|
389
|
-
ne: (other:
|
|
390
|
-
or: (other:
|
|
384
|
+
notEquals: (other: string | number | Long) => boolean;
|
|
385
|
+
neq: (other: string | number | Long) => boolean;
|
|
386
|
+
ne: (other: string | number | Long) => boolean;
|
|
387
|
+
or: (other: string | number | Long) => Long;
|
|
391
388
|
shiftLeft: (numBits: number | Long) => Long;
|
|
392
389
|
shl: (numBits: number | Long) => Long;
|
|
393
390
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -399,9 +396,8 @@ export declare const PutPhotoReply: {
|
|
|
399
396
|
rotl: (numBits: number | Long) => Long;
|
|
400
397
|
rotateRight: (numBits: number | Long) => Long;
|
|
401
398
|
rotr: (numBits: number | Long) => Long;
|
|
402
|
-
subtract: (subtrahend:
|
|
403
|
-
sub: (subtrahend:
|
|
404
|
-
toBigInt: () => bigint;
|
|
399
|
+
subtract: (subtrahend: string | number | Long) => Long;
|
|
400
|
+
sub: (subtrahend: string | number | Long) => Long;
|
|
405
401
|
toInt: () => number;
|
|
406
402
|
toNumber: () => number;
|
|
407
403
|
toBytes: (le?: boolean) => number[];
|
|
@@ -410,7 +406,7 @@ export declare const PutPhotoReply: {
|
|
|
410
406
|
toSigned: () => Long;
|
|
411
407
|
toString: (radix?: number) => string;
|
|
412
408
|
toUnsigned: () => Long;
|
|
413
|
-
xor: (other:
|
|
409
|
+
xor: (other: string | number | Long) => Long;
|
|
414
410
|
} & { [K_1 in Exclude<keyof I["fetchedSize"], keyof Long>]: never; });
|
|
415
411
|
photoId?: string | undefined;
|
|
416
412
|
} & { [K_2 in Exclude<keyof I, keyof PutPhotoReply>]: never; }>(base?: I): PutPhotoReply;
|
|
@@ -425,41 +421,40 @@ export declare const PutPhotoReply: {
|
|
|
425
421
|
high: number;
|
|
426
422
|
low: number;
|
|
427
423
|
unsigned: boolean;
|
|
428
|
-
add: (addend:
|
|
429
|
-
and: (other:
|
|
430
|
-
compare: (other:
|
|
431
|
-
comp: (other:
|
|
432
|
-
divide: (divisor:
|
|
433
|
-
div: (divisor:
|
|
434
|
-
equals: (other:
|
|
435
|
-
eq: (other:
|
|
424
|
+
add: (addend: string | number | Long) => Long;
|
|
425
|
+
and: (other: string | number | Long) => Long;
|
|
426
|
+
compare: (other: string | number | Long) => number;
|
|
427
|
+
comp: (other: string | number | Long) => number;
|
|
428
|
+
divide: (divisor: string | number | Long) => Long;
|
|
429
|
+
div: (divisor: string | number | Long) => Long;
|
|
430
|
+
equals: (other: string | number | Long) => boolean;
|
|
431
|
+
eq: (other: string | number | Long) => boolean;
|
|
436
432
|
getHighBits: () => number;
|
|
437
433
|
getHighBitsUnsigned: () => number;
|
|
438
434
|
getLowBits: () => number;
|
|
439
435
|
getLowBitsUnsigned: () => number;
|
|
440
436
|
getNumBitsAbs: () => number;
|
|
441
|
-
greaterThan: (other:
|
|
442
|
-
gt: (other:
|
|
443
|
-
greaterThanOrEqual: (other:
|
|
444
|
-
gte: (other:
|
|
445
|
-
ge: (other:
|
|
437
|
+
greaterThan: (other: string | number | Long) => boolean;
|
|
438
|
+
gt: (other: string | number | Long) => boolean;
|
|
439
|
+
greaterThanOrEqual: (other: string | number | Long) => boolean;
|
|
440
|
+
gte: (other: string | number | Long) => boolean;
|
|
441
|
+
ge: (other: string | number | Long) => boolean;
|
|
446
442
|
isEven: () => boolean;
|
|
447
443
|
isNegative: () => boolean;
|
|
448
444
|
isOdd: () => boolean;
|
|
449
445
|
isPositive: () => boolean;
|
|
450
|
-
isSafeInteger: () => boolean;
|
|
451
446
|
isZero: () => boolean;
|
|
452
447
|
eqz: () => boolean;
|
|
453
|
-
lessThan: (other:
|
|
454
|
-
lt: (other:
|
|
455
|
-
lessThanOrEqual: (other:
|
|
456
|
-
lte: (other:
|
|
457
|
-
le: (other:
|
|
458
|
-
modulo: (other:
|
|
459
|
-
mod: (other:
|
|
460
|
-
rem: (other:
|
|
461
|
-
multiply: (multiplier:
|
|
462
|
-
mul: (multiplier:
|
|
448
|
+
lessThan: (other: string | number | Long) => boolean;
|
|
449
|
+
lt: (other: string | number | Long) => boolean;
|
|
450
|
+
lessThanOrEqual: (other: string | number | Long) => boolean;
|
|
451
|
+
lte: (other: string | number | Long) => boolean;
|
|
452
|
+
le: (other: string | number | Long) => boolean;
|
|
453
|
+
modulo: (other: string | number | Long) => Long;
|
|
454
|
+
mod: (other: string | number | Long) => Long;
|
|
455
|
+
rem: (other: string | number | Long) => Long;
|
|
456
|
+
multiply: (multiplier: string | number | Long) => Long;
|
|
457
|
+
mul: (multiplier: string | number | Long) => Long;
|
|
463
458
|
negate: () => Long;
|
|
464
459
|
neg: () => Long;
|
|
465
460
|
not: () => Long;
|
|
@@ -467,10 +462,10 @@ export declare const PutPhotoReply: {
|
|
|
467
462
|
clz: () => number;
|
|
468
463
|
countTrailingZeros: () => number;
|
|
469
464
|
ctz: () => number;
|
|
470
|
-
notEquals: (other:
|
|
471
|
-
neq: (other:
|
|
472
|
-
ne: (other:
|
|
473
|
-
or: (other:
|
|
465
|
+
notEquals: (other: string | number | Long) => boolean;
|
|
466
|
+
neq: (other: string | number | Long) => boolean;
|
|
467
|
+
ne: (other: string | number | Long) => boolean;
|
|
468
|
+
or: (other: string | number | Long) => Long;
|
|
474
469
|
shiftLeft: (numBits: number | Long) => Long;
|
|
475
470
|
shl: (numBits: number | Long) => Long;
|
|
476
471
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -482,9 +477,8 @@ export declare const PutPhotoReply: {
|
|
|
482
477
|
rotl: (numBits: number | Long) => Long;
|
|
483
478
|
rotateRight: (numBits: number | Long) => Long;
|
|
484
479
|
rotr: (numBits: number | Long) => Long;
|
|
485
|
-
subtract: (subtrahend:
|
|
486
|
-
sub: (subtrahend:
|
|
487
|
-
toBigInt: () => bigint;
|
|
480
|
+
subtract: (subtrahend: string | number | Long) => Long;
|
|
481
|
+
sub: (subtrahend: string | number | Long) => Long;
|
|
488
482
|
toInt: () => number;
|
|
489
483
|
toNumber: () => number;
|
|
490
484
|
toBytes: (le?: boolean) => number[];
|
|
@@ -493,47 +487,46 @@ export declare const PutPhotoReply: {
|
|
|
493
487
|
toSigned: () => Long;
|
|
494
488
|
toString: (radix?: number) => string;
|
|
495
489
|
toUnsigned: () => Long;
|
|
496
|
-
xor: (other:
|
|
490
|
+
xor: (other: string | number | Long) => Long;
|
|
497
491
|
} & { [K_3 in Exclude<keyof I_1["totalSize"], keyof Long>]: never; });
|
|
498
492
|
fetchedSize?: string | number | (Long & {
|
|
499
493
|
high: number;
|
|
500
494
|
low: number;
|
|
501
495
|
unsigned: boolean;
|
|
502
|
-
add: (addend:
|
|
503
|
-
and: (other:
|
|
504
|
-
compare: (other:
|
|
505
|
-
comp: (other:
|
|
506
|
-
divide: (divisor:
|
|
507
|
-
div: (divisor:
|
|
508
|
-
equals: (other:
|
|
509
|
-
eq: (other:
|
|
496
|
+
add: (addend: string | number | Long) => Long;
|
|
497
|
+
and: (other: string | number | Long) => Long;
|
|
498
|
+
compare: (other: string | number | Long) => number;
|
|
499
|
+
comp: (other: string | number | Long) => number;
|
|
500
|
+
divide: (divisor: string | number | Long) => Long;
|
|
501
|
+
div: (divisor: string | number | Long) => Long;
|
|
502
|
+
equals: (other: string | number | Long) => boolean;
|
|
503
|
+
eq: (other: string | number | Long) => boolean;
|
|
510
504
|
getHighBits: () => number;
|
|
511
505
|
getHighBitsUnsigned: () => number;
|
|
512
506
|
getLowBits: () => number;
|
|
513
507
|
getLowBitsUnsigned: () => number;
|
|
514
508
|
getNumBitsAbs: () => number;
|
|
515
|
-
greaterThan: (other:
|
|
516
|
-
gt: (other:
|
|
517
|
-
greaterThanOrEqual: (other:
|
|
518
|
-
gte: (other:
|
|
519
|
-
ge: (other:
|
|
509
|
+
greaterThan: (other: string | number | Long) => boolean;
|
|
510
|
+
gt: (other: string | number | Long) => boolean;
|
|
511
|
+
greaterThanOrEqual: (other: string | number | Long) => boolean;
|
|
512
|
+
gte: (other: string | number | Long) => boolean;
|
|
513
|
+
ge: (other: string | number | Long) => boolean;
|
|
520
514
|
isEven: () => boolean;
|
|
521
515
|
isNegative: () => boolean;
|
|
522
516
|
isOdd: () => boolean;
|
|
523
517
|
isPositive: () => boolean;
|
|
524
|
-
isSafeInteger: () => boolean;
|
|
525
518
|
isZero: () => boolean;
|
|
526
519
|
eqz: () => boolean;
|
|
527
|
-
lessThan: (other:
|
|
528
|
-
lt: (other:
|
|
529
|
-
lessThanOrEqual: (other:
|
|
530
|
-
lte: (other:
|
|
531
|
-
le: (other:
|
|
532
|
-
modulo: (other:
|
|
533
|
-
mod: (other:
|
|
534
|
-
rem: (other:
|
|
535
|
-
multiply: (multiplier:
|
|
536
|
-
mul: (multiplier:
|
|
520
|
+
lessThan: (other: string | number | Long) => boolean;
|
|
521
|
+
lt: (other: string | number | Long) => boolean;
|
|
522
|
+
lessThanOrEqual: (other: string | number | Long) => boolean;
|
|
523
|
+
lte: (other: string | number | Long) => boolean;
|
|
524
|
+
le: (other: string | number | Long) => boolean;
|
|
525
|
+
modulo: (other: string | number | Long) => Long;
|
|
526
|
+
mod: (other: string | number | Long) => Long;
|
|
527
|
+
rem: (other: string | number | Long) => Long;
|
|
528
|
+
multiply: (multiplier: string | number | Long) => Long;
|
|
529
|
+
mul: (multiplier: string | number | Long) => Long;
|
|
537
530
|
negate: () => Long;
|
|
538
531
|
neg: () => Long;
|
|
539
532
|
not: () => Long;
|
|
@@ -541,10 +534,10 @@ export declare const PutPhotoReply: {
|
|
|
541
534
|
clz: () => number;
|
|
542
535
|
countTrailingZeros: () => number;
|
|
543
536
|
ctz: () => number;
|
|
544
|
-
notEquals: (other:
|
|
545
|
-
neq: (other:
|
|
546
|
-
ne: (other:
|
|
547
|
-
or: (other:
|
|
537
|
+
notEquals: (other: string | number | Long) => boolean;
|
|
538
|
+
neq: (other: string | number | Long) => boolean;
|
|
539
|
+
ne: (other: string | number | Long) => boolean;
|
|
540
|
+
or: (other: string | number | Long) => Long;
|
|
548
541
|
shiftLeft: (numBits: number | Long) => Long;
|
|
549
542
|
shl: (numBits: number | Long) => Long;
|
|
550
543
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -556,9 +549,8 @@ export declare const PutPhotoReply: {
|
|
|
556
549
|
rotl: (numBits: number | Long) => Long;
|
|
557
550
|
rotateRight: (numBits: number | Long) => Long;
|
|
558
551
|
rotr: (numBits: number | Long) => Long;
|
|
559
|
-
subtract: (subtrahend:
|
|
560
|
-
sub: (subtrahend:
|
|
561
|
-
toBigInt: () => bigint;
|
|
552
|
+
subtract: (subtrahend: string | number | Long) => Long;
|
|
553
|
+
sub: (subtrahend: string | number | Long) => Long;
|
|
562
554
|
toInt: () => number;
|
|
563
555
|
toNumber: () => number;
|
|
564
556
|
toBytes: (le?: boolean) => number[];
|
|
@@ -567,7 +559,7 @@ export declare const PutPhotoReply: {
|
|
|
567
559
|
toSigned: () => Long;
|
|
568
560
|
toString: (radix?: number) => string;
|
|
569
561
|
toUnsigned: () => Long;
|
|
570
|
-
xor: (other:
|
|
562
|
+
xor: (other: string | number | Long) => Long;
|
|
571
563
|
} & { [K_4 in Exclude<keyof I_1["fetchedSize"], keyof Long>]: never; });
|
|
572
564
|
photoId?: string | undefined;
|
|
573
565
|
} & { [K_5 in Exclude<keyof I_1, keyof PutPhotoReply>]: never; }>(object: I_1): PutPhotoReply;
|
|
@@ -717,41 +709,40 @@ export declare const PhotoMeta: {
|
|
|
717
709
|
high: number;
|
|
718
710
|
low: number;
|
|
719
711
|
unsigned: boolean;
|
|
720
|
-
add: (addend:
|
|
721
|
-
and: (other:
|
|
722
|
-
compare: (other:
|
|
723
|
-
comp: (other:
|
|
724
|
-
divide: (divisor:
|
|
725
|
-
div: (divisor:
|
|
726
|
-
equals: (other:
|
|
727
|
-
eq: (other:
|
|
712
|
+
add: (addend: string | number | Long) => Long;
|
|
713
|
+
and: (other: string | number | Long) => Long;
|
|
714
|
+
compare: (other: string | number | Long) => number;
|
|
715
|
+
comp: (other: string | number | Long) => number;
|
|
716
|
+
divide: (divisor: string | number | Long) => Long;
|
|
717
|
+
div: (divisor: string | number | Long) => Long;
|
|
718
|
+
equals: (other: string | number | Long) => boolean;
|
|
719
|
+
eq: (other: string | number | Long) => boolean;
|
|
728
720
|
getHighBits: () => number;
|
|
729
721
|
getHighBitsUnsigned: () => number;
|
|
730
722
|
getLowBits: () => number;
|
|
731
723
|
getLowBitsUnsigned: () => number;
|
|
732
724
|
getNumBitsAbs: () => number;
|
|
733
|
-
greaterThan: (other:
|
|
734
|
-
gt: (other:
|
|
735
|
-
greaterThanOrEqual: (other:
|
|
736
|
-
gte: (other:
|
|
737
|
-
ge: (other:
|
|
725
|
+
greaterThan: (other: string | number | Long) => boolean;
|
|
726
|
+
gt: (other: string | number | Long) => boolean;
|
|
727
|
+
greaterThanOrEqual: (other: string | number | Long) => boolean;
|
|
728
|
+
gte: (other: string | number | Long) => boolean;
|
|
729
|
+
ge: (other: string | number | Long) => boolean;
|
|
738
730
|
isEven: () => boolean;
|
|
739
731
|
isNegative: () => boolean;
|
|
740
732
|
isOdd: () => boolean;
|
|
741
733
|
isPositive: () => boolean;
|
|
742
|
-
isSafeInteger: () => boolean;
|
|
743
734
|
isZero: () => boolean;
|
|
744
735
|
eqz: () => boolean;
|
|
745
|
-
lessThan: (other:
|
|
746
|
-
lt: (other:
|
|
747
|
-
lessThanOrEqual: (other:
|
|
748
|
-
lte: (other:
|
|
749
|
-
le: (other:
|
|
750
|
-
modulo: (other:
|
|
751
|
-
mod: (other:
|
|
752
|
-
rem: (other:
|
|
753
|
-
multiply: (multiplier:
|
|
754
|
-
mul: (multiplier:
|
|
736
|
+
lessThan: (other: string | number | Long) => boolean;
|
|
737
|
+
lt: (other: string | number | Long) => boolean;
|
|
738
|
+
lessThanOrEqual: (other: string | number | Long) => boolean;
|
|
739
|
+
lte: (other: string | number | Long) => boolean;
|
|
740
|
+
le: (other: string | number | Long) => boolean;
|
|
741
|
+
modulo: (other: string | number | Long) => Long;
|
|
742
|
+
mod: (other: string | number | Long) => Long;
|
|
743
|
+
rem: (other: string | number | Long) => Long;
|
|
744
|
+
multiply: (multiplier: string | number | Long) => Long;
|
|
745
|
+
mul: (multiplier: string | number | Long) => Long;
|
|
755
746
|
negate: () => Long;
|
|
756
747
|
neg: () => Long;
|
|
757
748
|
not: () => Long;
|
|
@@ -759,10 +750,10 @@ export declare const PhotoMeta: {
|
|
|
759
750
|
clz: () => number;
|
|
760
751
|
countTrailingZeros: () => number;
|
|
761
752
|
ctz: () => number;
|
|
762
|
-
notEquals: (other:
|
|
763
|
-
neq: (other:
|
|
764
|
-
ne: (other:
|
|
765
|
-
or: (other:
|
|
753
|
+
notEquals: (other: string | number | Long) => boolean;
|
|
754
|
+
neq: (other: string | number | Long) => boolean;
|
|
755
|
+
ne: (other: string | number | Long) => boolean;
|
|
756
|
+
or: (other: string | number | Long) => Long;
|
|
766
757
|
shiftLeft: (numBits: number | Long) => Long;
|
|
767
758
|
shl: (numBits: number | Long) => Long;
|
|
768
759
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -774,9 +765,8 @@ export declare const PhotoMeta: {
|
|
|
774
765
|
rotl: (numBits: number | Long) => Long;
|
|
775
766
|
rotateRight: (numBits: number | Long) => Long;
|
|
776
767
|
rotr: (numBits: number | Long) => Long;
|
|
777
|
-
subtract: (subtrahend:
|
|
778
|
-
sub: (subtrahend:
|
|
779
|
-
toBigInt: () => bigint;
|
|
768
|
+
subtract: (subtrahend: string | number | Long) => Long;
|
|
769
|
+
sub: (subtrahend: string | number | Long) => Long;
|
|
780
770
|
toInt: () => number;
|
|
781
771
|
toNumber: () => number;
|
|
782
772
|
toBytes: (le?: boolean) => number[];
|
|
@@ -785,7 +775,7 @@ export declare const PhotoMeta: {
|
|
|
785
775
|
toSigned: () => Long;
|
|
786
776
|
toString: (radix?: number) => string;
|
|
787
777
|
toUnsigned: () => Long;
|
|
788
|
-
xor: (other:
|
|
778
|
+
xor: (other: string | number | Long) => Long;
|
|
789
779
|
} & { [K_1 in Exclude<keyof I["size"], keyof Long>]: never; });
|
|
790
780
|
mime?: string;
|
|
791
781
|
md5?: string | undefined;
|
|
@@ -825,41 +815,40 @@ export declare const PhotoMeta: {
|
|
|
825
815
|
high: number;
|
|
826
816
|
low: number;
|
|
827
817
|
unsigned: boolean;
|
|
828
|
-
add: (addend:
|
|
829
|
-
and: (other:
|
|
830
|
-
compare: (other:
|
|
831
|
-
comp: (other:
|
|
832
|
-
divide: (divisor:
|
|
833
|
-
div: (divisor:
|
|
834
|
-
equals: (other:
|
|
835
|
-
eq: (other:
|
|
818
|
+
add: (addend: string | number | Long) => Long;
|
|
819
|
+
and: (other: string | number | Long) => Long;
|
|
820
|
+
compare: (other: string | number | Long) => number;
|
|
821
|
+
comp: (other: string | number | Long) => number;
|
|
822
|
+
divide: (divisor: string | number | Long) => Long;
|
|
823
|
+
div: (divisor: string | number | Long) => Long;
|
|
824
|
+
equals: (other: string | number | Long) => boolean;
|
|
825
|
+
eq: (other: string | number | Long) => boolean;
|
|
836
826
|
getHighBits: () => number;
|
|
837
827
|
getHighBitsUnsigned: () => number;
|
|
838
828
|
getLowBits: () => number;
|
|
839
829
|
getLowBitsUnsigned: () => number;
|
|
840
830
|
getNumBitsAbs: () => number;
|
|
841
|
-
greaterThan: (other:
|
|
842
|
-
gt: (other:
|
|
843
|
-
greaterThanOrEqual: (other:
|
|
844
|
-
gte: (other:
|
|
845
|
-
ge: (other:
|
|
831
|
+
greaterThan: (other: string | number | Long) => boolean;
|
|
832
|
+
gt: (other: string | number | Long) => boolean;
|
|
833
|
+
greaterThanOrEqual: (other: string | number | Long) => boolean;
|
|
834
|
+
gte: (other: string | number | Long) => boolean;
|
|
835
|
+
ge: (other: string | number | Long) => boolean;
|
|
846
836
|
isEven: () => boolean;
|
|
847
837
|
isNegative: () => boolean;
|
|
848
838
|
isOdd: () => boolean;
|
|
849
839
|
isPositive: () => boolean;
|
|
850
|
-
isSafeInteger: () => boolean;
|
|
851
840
|
isZero: () => boolean;
|
|
852
841
|
eqz: () => boolean;
|
|
853
|
-
lessThan: (other:
|
|
854
|
-
lt: (other:
|
|
855
|
-
lessThanOrEqual: (other:
|
|
856
|
-
lte: (other:
|
|
857
|
-
le: (other:
|
|
858
|
-
modulo: (other:
|
|
859
|
-
mod: (other:
|
|
860
|
-
rem: (other:
|
|
861
|
-
multiply: (multiplier:
|
|
862
|
-
mul: (multiplier:
|
|
842
|
+
lessThan: (other: string | number | Long) => boolean;
|
|
843
|
+
lt: (other: string | number | Long) => boolean;
|
|
844
|
+
lessThanOrEqual: (other: string | number | Long) => boolean;
|
|
845
|
+
lte: (other: string | number | Long) => boolean;
|
|
846
|
+
le: (other: string | number | Long) => boolean;
|
|
847
|
+
modulo: (other: string | number | Long) => Long;
|
|
848
|
+
mod: (other: string | number | Long) => Long;
|
|
849
|
+
rem: (other: string | number | Long) => Long;
|
|
850
|
+
multiply: (multiplier: string | number | Long) => Long;
|
|
851
|
+
mul: (multiplier: string | number | Long) => Long;
|
|
863
852
|
negate: () => Long;
|
|
864
853
|
neg: () => Long;
|
|
865
854
|
not: () => Long;
|
|
@@ -867,10 +856,10 @@ export declare const PhotoMeta: {
|
|
|
867
856
|
clz: () => number;
|
|
868
857
|
countTrailingZeros: () => number;
|
|
869
858
|
ctz: () => number;
|
|
870
|
-
notEquals: (other:
|
|
871
|
-
neq: (other:
|
|
872
|
-
ne: (other:
|
|
873
|
-
or: (other:
|
|
859
|
+
notEquals: (other: string | number | Long) => boolean;
|
|
860
|
+
neq: (other: string | number | Long) => boolean;
|
|
861
|
+
ne: (other: string | number | Long) => boolean;
|
|
862
|
+
or: (other: string | number | Long) => Long;
|
|
874
863
|
shiftLeft: (numBits: number | Long) => Long;
|
|
875
864
|
shl: (numBits: number | Long) => Long;
|
|
876
865
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -882,9 +871,8 @@ export declare const PhotoMeta: {
|
|
|
882
871
|
rotl: (numBits: number | Long) => Long;
|
|
883
872
|
rotateRight: (numBits: number | Long) => Long;
|
|
884
873
|
rotr: (numBits: number | Long) => Long;
|
|
885
|
-
subtract: (subtrahend:
|
|
886
|
-
sub: (subtrahend:
|
|
887
|
-
toBigInt: () => bigint;
|
|
874
|
+
subtract: (subtrahend: string | number | Long) => Long;
|
|
875
|
+
sub: (subtrahend: string | number | Long) => Long;
|
|
888
876
|
toInt: () => number;
|
|
889
877
|
toNumber: () => number;
|
|
890
878
|
toBytes: (le?: boolean) => number[];
|
|
@@ -893,7 +881,7 @@ export declare const PhotoMeta: {
|
|
|
893
881
|
toSigned: () => Long;
|
|
894
882
|
toString: (radix?: number) => string;
|
|
895
883
|
toUnsigned: () => Long;
|
|
896
|
-
xor: (other:
|
|
884
|
+
xor: (other: string | number | Long) => Long;
|
|
897
885
|
} & { [K_4 in Exclude<keyof I_1["size"], keyof Long>]: never; });
|
|
898
886
|
mime?: string;
|
|
899
887
|
md5?: string | undefined;
|
|
@@ -1156,41 +1144,40 @@ export declare const ListAlbumAssetStatsRequet: {
|
|
|
1156
1144
|
high: number;
|
|
1157
1145
|
low: number;
|
|
1158
1146
|
unsigned: boolean;
|
|
1159
|
-
add: (addend:
|
|
1160
|
-
and: (other:
|
|
1161
|
-
compare: (other:
|
|
1162
|
-
comp: (other:
|
|
1163
|
-
divide: (divisor:
|
|
1164
|
-
div: (divisor:
|
|
1165
|
-
equals: (other:
|
|
1166
|
-
eq: (other:
|
|
1147
|
+
add: (addend: string | number | Long) => Long;
|
|
1148
|
+
and: (other: string | number | Long) => Long;
|
|
1149
|
+
compare: (other: string | number | Long) => number;
|
|
1150
|
+
comp: (other: string | number | Long) => number;
|
|
1151
|
+
divide: (divisor: string | number | Long) => Long;
|
|
1152
|
+
div: (divisor: string | number | Long) => Long;
|
|
1153
|
+
equals: (other: string | number | Long) => boolean;
|
|
1154
|
+
eq: (other: string | number | Long) => boolean;
|
|
1167
1155
|
getHighBits: () => number;
|
|
1168
1156
|
getHighBitsUnsigned: () => number;
|
|
1169
1157
|
getLowBits: () => number;
|
|
1170
1158
|
getLowBitsUnsigned: () => number;
|
|
1171
1159
|
getNumBitsAbs: () => number;
|
|
1172
|
-
greaterThan: (other:
|
|
1173
|
-
gt: (other:
|
|
1174
|
-
greaterThanOrEqual: (other:
|
|
1175
|
-
gte: (other:
|
|
1176
|
-
ge: (other:
|
|
1160
|
+
greaterThan: (other: string | number | Long) => boolean;
|
|
1161
|
+
gt: (other: string | number | Long) => boolean;
|
|
1162
|
+
greaterThanOrEqual: (other: string | number | Long) => boolean;
|
|
1163
|
+
gte: (other: string | number | Long) => boolean;
|
|
1164
|
+
ge: (other: string | number | Long) => boolean;
|
|
1177
1165
|
isEven: () => boolean;
|
|
1178
1166
|
isNegative: () => boolean;
|
|
1179
1167
|
isOdd: () => boolean;
|
|
1180
1168
|
isPositive: () => boolean;
|
|
1181
|
-
isSafeInteger: () => boolean;
|
|
1182
1169
|
isZero: () => boolean;
|
|
1183
1170
|
eqz: () => boolean;
|
|
1184
|
-
lessThan: (other:
|
|
1185
|
-
lt: (other:
|
|
1186
|
-
lessThanOrEqual: (other:
|
|
1187
|
-
lte: (other:
|
|
1188
|
-
le: (other:
|
|
1189
|
-
modulo: (other:
|
|
1190
|
-
mod: (other:
|
|
1191
|
-
rem: (other:
|
|
1192
|
-
multiply: (multiplier:
|
|
1193
|
-
mul: (multiplier:
|
|
1171
|
+
lessThan: (other: string | number | Long) => boolean;
|
|
1172
|
+
lt: (other: string | number | Long) => boolean;
|
|
1173
|
+
lessThanOrEqual: (other: string | number | Long) => boolean;
|
|
1174
|
+
lte: (other: string | number | Long) => boolean;
|
|
1175
|
+
le: (other: string | number | Long) => boolean;
|
|
1176
|
+
modulo: (other: string | number | Long) => Long;
|
|
1177
|
+
mod: (other: string | number | Long) => Long;
|
|
1178
|
+
rem: (other: string | number | Long) => Long;
|
|
1179
|
+
multiply: (multiplier: string | number | Long) => Long;
|
|
1180
|
+
mul: (multiplier: string | number | Long) => Long;
|
|
1194
1181
|
negate: () => Long;
|
|
1195
1182
|
neg: () => Long;
|
|
1196
1183
|
not: () => Long;
|
|
@@ -1198,10 +1185,10 @@ export declare const ListAlbumAssetStatsRequet: {
|
|
|
1198
1185
|
clz: () => number;
|
|
1199
1186
|
countTrailingZeros: () => number;
|
|
1200
1187
|
ctz: () => number;
|
|
1201
|
-
notEquals: (other:
|
|
1202
|
-
neq: (other:
|
|
1203
|
-
ne: (other:
|
|
1204
|
-
or: (other:
|
|
1188
|
+
notEquals: (other: string | number | Long) => boolean;
|
|
1189
|
+
neq: (other: string | number | Long) => boolean;
|
|
1190
|
+
ne: (other: string | number | Long) => boolean;
|
|
1191
|
+
or: (other: string | number | Long) => Long;
|
|
1205
1192
|
shiftLeft: (numBits: number | Long) => Long;
|
|
1206
1193
|
shl: (numBits: number | Long) => Long;
|
|
1207
1194
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -1213,9 +1200,8 @@ export declare const ListAlbumAssetStatsRequet: {
|
|
|
1213
1200
|
rotl: (numBits: number | Long) => Long;
|
|
1214
1201
|
rotateRight: (numBits: number | Long) => Long;
|
|
1215
1202
|
rotr: (numBits: number | Long) => Long;
|
|
1216
|
-
subtract: (subtrahend:
|
|
1217
|
-
sub: (subtrahend:
|
|
1218
|
-
toBigInt: () => bigint;
|
|
1203
|
+
subtract: (subtrahend: string | number | Long) => Long;
|
|
1204
|
+
sub: (subtrahend: string | number | Long) => Long;
|
|
1219
1205
|
toInt: () => number;
|
|
1220
1206
|
toNumber: () => number;
|
|
1221
1207
|
toBytes: (le?: boolean) => number[];
|
|
@@ -1224,7 +1210,7 @@ export declare const ListAlbumAssetStatsRequet: {
|
|
|
1224
1210
|
toSigned: () => Long;
|
|
1225
1211
|
toString: (radix?: number) => string;
|
|
1226
1212
|
toUnsigned: () => Long;
|
|
1227
|
-
xor: (other:
|
|
1213
|
+
xor: (other: string | number | Long) => Long;
|
|
1228
1214
|
} & { [K in Exclude<keyof I["albumId"], keyof Long>]: never; });
|
|
1229
1215
|
} & { [K_1 in Exclude<keyof I, "albumId">]: never; }>(base?: I): ListAlbumAssetStatsRequet;
|
|
1230
1216
|
fromPartial<I_1 extends {
|
|
@@ -1234,41 +1220,40 @@ export declare const ListAlbumAssetStatsRequet: {
|
|
|
1234
1220
|
high: number;
|
|
1235
1221
|
low: number;
|
|
1236
1222
|
unsigned: boolean;
|
|
1237
|
-
add: (addend:
|
|
1238
|
-
and: (other:
|
|
1239
|
-
compare: (other:
|
|
1240
|
-
comp: (other:
|
|
1241
|
-
divide: (divisor:
|
|
1242
|
-
div: (divisor:
|
|
1243
|
-
equals: (other:
|
|
1244
|
-
eq: (other:
|
|
1223
|
+
add: (addend: string | number | Long) => Long;
|
|
1224
|
+
and: (other: string | number | Long) => Long;
|
|
1225
|
+
compare: (other: string | number | Long) => number;
|
|
1226
|
+
comp: (other: string | number | Long) => number;
|
|
1227
|
+
divide: (divisor: string | number | Long) => Long;
|
|
1228
|
+
div: (divisor: string | number | Long) => Long;
|
|
1229
|
+
equals: (other: string | number | Long) => boolean;
|
|
1230
|
+
eq: (other: string | number | Long) => boolean;
|
|
1245
1231
|
getHighBits: () => number;
|
|
1246
1232
|
getHighBitsUnsigned: () => number;
|
|
1247
1233
|
getLowBits: () => number;
|
|
1248
1234
|
getLowBitsUnsigned: () => number;
|
|
1249
1235
|
getNumBitsAbs: () => number;
|
|
1250
|
-
greaterThan: (other:
|
|
1251
|
-
gt: (other:
|
|
1252
|
-
greaterThanOrEqual: (other:
|
|
1253
|
-
gte: (other:
|
|
1254
|
-
ge: (other:
|
|
1236
|
+
greaterThan: (other: string | number | Long) => boolean;
|
|
1237
|
+
gt: (other: string | number | Long) => boolean;
|
|
1238
|
+
greaterThanOrEqual: (other: string | number | Long) => boolean;
|
|
1239
|
+
gte: (other: string | number | Long) => boolean;
|
|
1240
|
+
ge: (other: string | number | Long) => boolean;
|
|
1255
1241
|
isEven: () => boolean;
|
|
1256
1242
|
isNegative: () => boolean;
|
|
1257
1243
|
isOdd: () => boolean;
|
|
1258
1244
|
isPositive: () => boolean;
|
|
1259
|
-
isSafeInteger: () => boolean;
|
|
1260
1245
|
isZero: () => boolean;
|
|
1261
1246
|
eqz: () => boolean;
|
|
1262
|
-
lessThan: (other:
|
|
1263
|
-
lt: (other:
|
|
1264
|
-
lessThanOrEqual: (other:
|
|
1265
|
-
lte: (other:
|
|
1266
|
-
le: (other:
|
|
1267
|
-
modulo: (other:
|
|
1268
|
-
mod: (other:
|
|
1269
|
-
rem: (other:
|
|
1270
|
-
multiply: (multiplier:
|
|
1271
|
-
mul: (multiplier:
|
|
1247
|
+
lessThan: (other: string | number | Long) => boolean;
|
|
1248
|
+
lt: (other: string | number | Long) => boolean;
|
|
1249
|
+
lessThanOrEqual: (other: string | number | Long) => boolean;
|
|
1250
|
+
lte: (other: string | number | Long) => boolean;
|
|
1251
|
+
le: (other: string | number | Long) => boolean;
|
|
1252
|
+
modulo: (other: string | number | Long) => Long;
|
|
1253
|
+
mod: (other: string | number | Long) => Long;
|
|
1254
|
+
rem: (other: string | number | Long) => Long;
|
|
1255
|
+
multiply: (multiplier: string | number | Long) => Long;
|
|
1256
|
+
mul: (multiplier: string | number | Long) => Long;
|
|
1272
1257
|
negate: () => Long;
|
|
1273
1258
|
neg: () => Long;
|
|
1274
1259
|
not: () => Long;
|
|
@@ -1276,10 +1261,10 @@ export declare const ListAlbumAssetStatsRequet: {
|
|
|
1276
1261
|
clz: () => number;
|
|
1277
1262
|
countTrailingZeros: () => number;
|
|
1278
1263
|
ctz: () => number;
|
|
1279
|
-
notEquals: (other:
|
|
1280
|
-
neq: (other:
|
|
1281
|
-
ne: (other:
|
|
1282
|
-
or: (other:
|
|
1264
|
+
notEquals: (other: string | number | Long) => boolean;
|
|
1265
|
+
neq: (other: string | number | Long) => boolean;
|
|
1266
|
+
ne: (other: string | number | Long) => boolean;
|
|
1267
|
+
or: (other: string | number | Long) => Long;
|
|
1283
1268
|
shiftLeft: (numBits: number | Long) => Long;
|
|
1284
1269
|
shl: (numBits: number | Long) => Long;
|
|
1285
1270
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -1291,9 +1276,8 @@ export declare const ListAlbumAssetStatsRequet: {
|
|
|
1291
1276
|
rotl: (numBits: number | Long) => Long;
|
|
1292
1277
|
rotateRight: (numBits: number | Long) => Long;
|
|
1293
1278
|
rotr: (numBits: number | Long) => Long;
|
|
1294
|
-
subtract: (subtrahend:
|
|
1295
|
-
sub: (subtrahend:
|
|
1296
|
-
toBigInt: () => bigint;
|
|
1279
|
+
subtract: (subtrahend: string | number | Long) => Long;
|
|
1280
|
+
sub: (subtrahend: string | number | Long) => Long;
|
|
1297
1281
|
toInt: () => number;
|
|
1298
1282
|
toNumber: () => number;
|
|
1299
1283
|
toBytes: (le?: boolean) => number[];
|
|
@@ -1302,7 +1286,7 @@ export declare const ListAlbumAssetStatsRequet: {
|
|
|
1302
1286
|
toSigned: () => Long;
|
|
1303
1287
|
toString: (radix?: number) => string;
|
|
1304
1288
|
toUnsigned: () => Long;
|
|
1305
|
-
xor: (other:
|
|
1289
|
+
xor: (other: string | number | Long) => Long;
|
|
1306
1290
|
} & { [K_2 in Exclude<keyof I_1["albumId"], keyof Long>]: never; });
|
|
1307
1291
|
} & { [K_3 in Exclude<keyof I_1, "albumId">]: never; }>(object: I_1): ListAlbumAssetStatsRequet;
|
|
1308
1292
|
};
|