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