@lazycatcloud/sdk 0.1.470 → 0.1.471
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/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/localdevice/ble.d.ts +33 -0
- package/dist/localdevice/ble.d.ts.map +1 -1
- package/dist/localdevice/ble.js +112 -1
- package/dist/localdevice/ble.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/package.json +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 +9280 -8700
- package/dist/sys/package_manager.d.ts.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
|
@@ -344,40 +344,41 @@ export declare const NetworkDeviceStatusInfo: {
|
|
|
344
344
|
high: number;
|
|
345
345
|
low: number;
|
|
346
346
|
unsigned: boolean;
|
|
347
|
-
add: (addend:
|
|
348
|
-
and: (other:
|
|
349
|
-
compare: (other:
|
|
350
|
-
comp: (other:
|
|
351
|
-
divide: (divisor:
|
|
352
|
-
div: (divisor:
|
|
353
|
-
equals: (other:
|
|
354
|
-
eq: (other:
|
|
347
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
348
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
349
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
350
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
351
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
352
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
353
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
354
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
355
355
|
getHighBits: () => number;
|
|
356
356
|
getHighBitsUnsigned: () => number;
|
|
357
357
|
getLowBits: () => number;
|
|
358
358
|
getLowBitsUnsigned: () => number;
|
|
359
359
|
getNumBitsAbs: () => number;
|
|
360
|
-
greaterThan: (other:
|
|
361
|
-
gt: (other:
|
|
362
|
-
greaterThanOrEqual: (other:
|
|
363
|
-
gte: (other:
|
|
364
|
-
ge: (other:
|
|
360
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
361
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
362
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
363
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
364
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
365
365
|
isEven: () => boolean;
|
|
366
366
|
isNegative: () => boolean;
|
|
367
367
|
isOdd: () => boolean;
|
|
368
368
|
isPositive: () => boolean;
|
|
369
|
+
isSafeInteger: () => boolean;
|
|
369
370
|
isZero: () => boolean;
|
|
370
371
|
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:
|
|
372
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
373
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
374
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
375
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
376
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
377
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
378
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
379
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
380
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
381
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
381
382
|
negate: () => Long;
|
|
382
383
|
neg: () => Long;
|
|
383
384
|
not: () => Long;
|
|
@@ -385,10 +386,10 @@ export declare const NetworkDeviceStatusInfo: {
|
|
|
385
386
|
clz: () => number;
|
|
386
387
|
countTrailingZeros: () => number;
|
|
387
388
|
ctz: () => number;
|
|
388
|
-
notEquals: (other:
|
|
389
|
-
neq: (other:
|
|
390
|
-
ne: (other:
|
|
391
|
-
or: (other:
|
|
389
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
390
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
391
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
392
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
392
393
|
shiftLeft: (numBits: number | Long) => Long;
|
|
393
394
|
shl: (numBits: number | Long) => Long;
|
|
394
395
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -400,8 +401,9 @@ export declare const NetworkDeviceStatusInfo: {
|
|
|
400
401
|
rotl: (numBits: number | Long) => Long;
|
|
401
402
|
rotateRight: (numBits: number | Long) => Long;
|
|
402
403
|
rotr: (numBits: number | Long) => Long;
|
|
403
|
-
subtract: (subtrahend:
|
|
404
|
-
sub: (subtrahend:
|
|
404
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
405
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
406
|
+
toBigInt: () => bigint;
|
|
405
407
|
toInt: () => number;
|
|
406
408
|
toNumber: () => number;
|
|
407
409
|
toBytes: (le?: boolean) => number[];
|
|
@@ -410,7 +412,7 @@ export declare const NetworkDeviceStatusInfo: {
|
|
|
410
412
|
toSigned: () => Long;
|
|
411
413
|
toString: (radix?: number) => string;
|
|
412
414
|
toUnsigned: () => Long;
|
|
413
|
-
xor: (other:
|
|
415
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
414
416
|
} & { [K in Exclude<keyof I["linkSpeed"], keyof Long>]: never; });
|
|
415
417
|
info?: {
|
|
416
418
|
bssid?: string;
|
|
@@ -458,40 +460,41 @@ export declare const NetworkDeviceStatusInfo: {
|
|
|
458
460
|
high: number;
|
|
459
461
|
low: number;
|
|
460
462
|
unsigned: boolean;
|
|
461
|
-
add: (addend:
|
|
462
|
-
and: (other:
|
|
463
|
-
compare: (other:
|
|
464
|
-
comp: (other:
|
|
465
|
-
divide: (divisor:
|
|
466
|
-
div: (divisor:
|
|
467
|
-
equals: (other:
|
|
468
|
-
eq: (other:
|
|
463
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
464
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
465
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
466
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
467
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
468
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
469
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
470
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
469
471
|
getHighBits: () => number;
|
|
470
472
|
getHighBitsUnsigned: () => number;
|
|
471
473
|
getLowBits: () => number;
|
|
472
474
|
getLowBitsUnsigned: () => number;
|
|
473
475
|
getNumBitsAbs: () => number;
|
|
474
|
-
greaterThan: (other:
|
|
475
|
-
gt: (other:
|
|
476
|
-
greaterThanOrEqual: (other:
|
|
477
|
-
gte: (other:
|
|
478
|
-
ge: (other:
|
|
476
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
477
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
478
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
479
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
480
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
479
481
|
isEven: () => boolean;
|
|
480
482
|
isNegative: () => boolean;
|
|
481
483
|
isOdd: () => boolean;
|
|
482
484
|
isPositive: () => boolean;
|
|
485
|
+
isSafeInteger: () => boolean;
|
|
483
486
|
isZero: () => boolean;
|
|
484
487
|
eqz: () => boolean;
|
|
485
|
-
lessThan: (other:
|
|
486
|
-
lt: (other:
|
|
487
|
-
lessThanOrEqual: (other:
|
|
488
|
-
lte: (other:
|
|
489
|
-
le: (other:
|
|
490
|
-
modulo: (other:
|
|
491
|
-
mod: (other:
|
|
492
|
-
rem: (other:
|
|
493
|
-
multiply: (multiplier:
|
|
494
|
-
mul: (multiplier:
|
|
488
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
489
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
490
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
491
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
492
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
493
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
494
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
495
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
496
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
497
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
495
498
|
negate: () => Long;
|
|
496
499
|
neg: () => Long;
|
|
497
500
|
not: () => Long;
|
|
@@ -499,10 +502,10 @@ export declare const NetworkDeviceStatusInfo: {
|
|
|
499
502
|
clz: () => number;
|
|
500
503
|
countTrailingZeros: () => number;
|
|
501
504
|
ctz: () => number;
|
|
502
|
-
notEquals: (other:
|
|
503
|
-
neq: (other:
|
|
504
|
-
ne: (other:
|
|
505
|
-
or: (other:
|
|
505
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
506
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
507
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
508
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
506
509
|
shiftLeft: (numBits: number | Long) => Long;
|
|
507
510
|
shl: (numBits: number | Long) => Long;
|
|
508
511
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -514,8 +517,9 @@ export declare const NetworkDeviceStatusInfo: {
|
|
|
514
517
|
rotl: (numBits: number | Long) => Long;
|
|
515
518
|
rotateRight: (numBits: number | Long) => Long;
|
|
516
519
|
rotr: (numBits: number | Long) => Long;
|
|
517
|
-
subtract: (subtrahend:
|
|
518
|
-
sub: (subtrahend:
|
|
520
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
521
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
522
|
+
toBigInt: () => bigint;
|
|
519
523
|
toInt: () => number;
|
|
520
524
|
toNumber: () => number;
|
|
521
525
|
toBytes: (le?: boolean) => number[];
|
|
@@ -524,7 +528,7 @@ export declare const NetworkDeviceStatusInfo: {
|
|
|
524
528
|
toSigned: () => Long;
|
|
525
529
|
toString: (radix?: number) => string;
|
|
526
530
|
toUnsigned: () => Long;
|
|
527
|
-
xor: (other:
|
|
531
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
528
532
|
} & { [K_3 in Exclude<keyof I_1["linkSpeed"], keyof Long>]: never; });
|
|
529
533
|
info?: {
|
|
530
534
|
bssid?: string;
|
|
@@ -569,40 +573,41 @@ export declare const WifiConnectInfo: {
|
|
|
569
573
|
high: number;
|
|
570
574
|
low: number;
|
|
571
575
|
unsigned: boolean;
|
|
572
|
-
add: (addend:
|
|
573
|
-
and: (other:
|
|
574
|
-
compare: (other:
|
|
575
|
-
comp: (other:
|
|
576
|
-
divide: (divisor:
|
|
577
|
-
div: (divisor:
|
|
578
|
-
equals: (other:
|
|
579
|
-
eq: (other:
|
|
576
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
577
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
578
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
579
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
580
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
581
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
582
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
583
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
580
584
|
getHighBits: () => number;
|
|
581
585
|
getHighBitsUnsigned: () => number;
|
|
582
586
|
getLowBits: () => number;
|
|
583
587
|
getLowBitsUnsigned: () => number;
|
|
584
588
|
getNumBitsAbs: () => number;
|
|
585
|
-
greaterThan: (other:
|
|
586
|
-
gt: (other:
|
|
587
|
-
greaterThanOrEqual: (other:
|
|
588
|
-
gte: (other:
|
|
589
|
-
ge: (other:
|
|
589
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
590
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
591
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
592
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
593
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
590
594
|
isEven: () => boolean;
|
|
591
595
|
isNegative: () => boolean;
|
|
592
596
|
isOdd: () => boolean;
|
|
593
597
|
isPositive: () => boolean;
|
|
598
|
+
isSafeInteger: () => boolean;
|
|
594
599
|
isZero: () => boolean;
|
|
595
600
|
eqz: () => boolean;
|
|
596
|
-
lessThan: (other:
|
|
597
|
-
lt: (other:
|
|
598
|
-
lessThanOrEqual: (other:
|
|
599
|
-
lte: (other:
|
|
600
|
-
le: (other:
|
|
601
|
-
modulo: (other:
|
|
602
|
-
mod: (other:
|
|
603
|
-
rem: (other:
|
|
604
|
-
multiply: (multiplier:
|
|
605
|
-
mul: (multiplier:
|
|
601
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
602
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
603
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
604
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
605
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
606
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
607
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
608
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
609
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
610
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
606
611
|
negate: () => Long;
|
|
607
612
|
neg: () => Long;
|
|
608
613
|
not: () => Long;
|
|
@@ -610,10 +615,10 @@ export declare const WifiConnectInfo: {
|
|
|
610
615
|
clz: () => number;
|
|
611
616
|
countTrailingZeros: () => number;
|
|
612
617
|
ctz: () => number;
|
|
613
|
-
notEquals: (other:
|
|
614
|
-
neq: (other:
|
|
615
|
-
ne: (other:
|
|
616
|
-
or: (other:
|
|
618
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
619
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
620
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
621
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
617
622
|
shiftLeft: (numBits: number | Long) => Long;
|
|
618
623
|
shl: (numBits: number | Long) => Long;
|
|
619
624
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -625,8 +630,9 @@ export declare const WifiConnectInfo: {
|
|
|
625
630
|
rotl: (numBits: number | Long) => Long;
|
|
626
631
|
rotateRight: (numBits: number | Long) => Long;
|
|
627
632
|
rotr: (numBits: number | Long) => Long;
|
|
628
|
-
subtract: (subtrahend:
|
|
629
|
-
sub: (subtrahend:
|
|
633
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
634
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
635
|
+
toBigInt: () => bigint;
|
|
630
636
|
toInt: () => number;
|
|
631
637
|
toNumber: () => number;
|
|
632
638
|
toBytes: (le?: boolean) => number[];
|
|
@@ -635,7 +641,7 @@ export declare const WifiConnectInfo: {
|
|
|
635
641
|
toSigned: () => Long;
|
|
636
642
|
toString: (radix?: number) => string;
|
|
637
643
|
toUnsigned: () => Long;
|
|
638
|
-
xor: (other:
|
|
644
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
639
645
|
} & { [K in Exclude<keyof I["timeout"], keyof Long>]: never; });
|
|
640
646
|
} & { [K_1 in Exclude<keyof I, keyof WifiConnectInfo>]: never; }>(base?: I): WifiConnectInfo;
|
|
641
647
|
fromPartial<I_1 extends {
|
|
@@ -653,40 +659,41 @@ export declare const WifiConnectInfo: {
|
|
|
653
659
|
high: number;
|
|
654
660
|
low: number;
|
|
655
661
|
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:
|
|
662
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
663
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
664
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
665
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
666
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
667
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
668
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
669
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
664
670
|
getHighBits: () => number;
|
|
665
671
|
getHighBitsUnsigned: () => number;
|
|
666
672
|
getLowBits: () => number;
|
|
667
673
|
getLowBitsUnsigned: () => number;
|
|
668
674
|
getNumBitsAbs: () => number;
|
|
669
|
-
greaterThan: (other:
|
|
670
|
-
gt: (other:
|
|
671
|
-
greaterThanOrEqual: (other:
|
|
672
|
-
gte: (other:
|
|
673
|
-
ge: (other:
|
|
675
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
676
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
677
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
678
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
679
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
674
680
|
isEven: () => boolean;
|
|
675
681
|
isNegative: () => boolean;
|
|
676
682
|
isOdd: () => boolean;
|
|
677
683
|
isPositive: () => boolean;
|
|
684
|
+
isSafeInteger: () => boolean;
|
|
678
685
|
isZero: () => boolean;
|
|
679
686
|
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:
|
|
687
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
688
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
689
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
690
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
691
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
692
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
693
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
694
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
695
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
696
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
690
697
|
negate: () => Long;
|
|
691
698
|
neg: () => Long;
|
|
692
699
|
not: () => Long;
|
|
@@ -694,10 +701,10 @@ export declare const WifiConnectInfo: {
|
|
|
694
701
|
clz: () => number;
|
|
695
702
|
countTrailingZeros: () => number;
|
|
696
703
|
ctz: () => number;
|
|
697
|
-
notEquals: (other:
|
|
698
|
-
neq: (other:
|
|
699
|
-
ne: (other:
|
|
700
|
-
or: (other:
|
|
704
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
705
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
706
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
707
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
701
708
|
shiftLeft: (numBits: number | Long) => Long;
|
|
702
709
|
shl: (numBits: number | Long) => Long;
|
|
703
710
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -709,8 +716,9 @@ export declare const WifiConnectInfo: {
|
|
|
709
716
|
rotl: (numBits: number | Long) => Long;
|
|
710
717
|
rotateRight: (numBits: number | Long) => Long;
|
|
711
718
|
rotr: (numBits: number | Long) => Long;
|
|
712
|
-
subtract: (subtrahend:
|
|
713
|
-
sub: (subtrahend:
|
|
719
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
720
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
721
|
+
toBigInt: () => bigint;
|
|
714
722
|
toInt: () => number;
|
|
715
723
|
toNumber: () => number;
|
|
716
724
|
toBytes: (le?: boolean) => number[];
|
|
@@ -719,7 +727,7 @@ export declare const WifiConnectInfo: {
|
|
|
719
727
|
toSigned: () => Long;
|
|
720
728
|
toString: (radix?: number) => string;
|
|
721
729
|
toUnsigned: () => Long;
|
|
722
|
-
xor: (other:
|
|
730
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
723
731
|
} & { [K_2 in Exclude<keyof I_1["timeout"], keyof Long>]: never; });
|
|
724
732
|
} & { [K_3 in Exclude<keyof I_1, keyof WifiConnectInfo>]: never; }>(object: I_1): WifiConnectInfo;
|
|
725
733
|
};
|
|
@@ -739,40 +747,41 @@ export declare const WifiConnectTempInfo: {
|
|
|
739
747
|
high: number;
|
|
740
748
|
low: number;
|
|
741
749
|
unsigned: boolean;
|
|
742
|
-
add: (addend:
|
|
743
|
-
and: (other:
|
|
744
|
-
compare: (other:
|
|
745
|
-
comp: (other:
|
|
746
|
-
divide: (divisor:
|
|
747
|
-
div: (divisor:
|
|
748
|
-
equals: (other:
|
|
749
|
-
eq: (other:
|
|
750
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
751
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
752
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
753
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
754
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
755
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
756
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
757
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
750
758
|
getHighBits: () => number;
|
|
751
759
|
getHighBitsUnsigned: () => number;
|
|
752
760
|
getLowBits: () => number;
|
|
753
761
|
getLowBitsUnsigned: () => number;
|
|
754
762
|
getNumBitsAbs: () => number;
|
|
755
|
-
greaterThan: (other:
|
|
756
|
-
gt: (other:
|
|
757
|
-
greaterThanOrEqual: (other:
|
|
758
|
-
gte: (other:
|
|
759
|
-
ge: (other:
|
|
763
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
764
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
765
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
766
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
767
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
760
768
|
isEven: () => boolean;
|
|
761
769
|
isNegative: () => boolean;
|
|
762
770
|
isOdd: () => boolean;
|
|
763
771
|
isPositive: () => boolean;
|
|
772
|
+
isSafeInteger: () => boolean;
|
|
764
773
|
isZero: () => boolean;
|
|
765
774
|
eqz: () => boolean;
|
|
766
|
-
lessThan: (other:
|
|
767
|
-
lt: (other:
|
|
768
|
-
lessThanOrEqual: (other:
|
|
769
|
-
lte: (other:
|
|
770
|
-
le: (other:
|
|
771
|
-
modulo: (other:
|
|
772
|
-
mod: (other:
|
|
773
|
-
rem: (other:
|
|
774
|
-
multiply: (multiplier:
|
|
775
|
-
mul: (multiplier:
|
|
775
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
776
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
777
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
778
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
779
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
780
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
781
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
782
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
783
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
784
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
776
785
|
negate: () => Long;
|
|
777
786
|
neg: () => Long;
|
|
778
787
|
not: () => Long;
|
|
@@ -780,10 +789,10 @@ export declare const WifiConnectTempInfo: {
|
|
|
780
789
|
clz: () => number;
|
|
781
790
|
countTrailingZeros: () => number;
|
|
782
791
|
ctz: () => number;
|
|
783
|
-
notEquals: (other:
|
|
784
|
-
neq: (other:
|
|
785
|
-
ne: (other:
|
|
786
|
-
or: (other:
|
|
792
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
793
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
794
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
795
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
787
796
|
shiftLeft: (numBits: number | Long) => Long;
|
|
788
797
|
shl: (numBits: number | Long) => Long;
|
|
789
798
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -795,8 +804,9 @@ export declare const WifiConnectTempInfo: {
|
|
|
795
804
|
rotl: (numBits: number | Long) => Long;
|
|
796
805
|
rotateRight: (numBits: number | Long) => Long;
|
|
797
806
|
rotr: (numBits: number | Long) => Long;
|
|
798
|
-
subtract: (subtrahend:
|
|
799
|
-
sub: (subtrahend:
|
|
807
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
808
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
809
|
+
toBigInt: () => bigint;
|
|
800
810
|
toInt: () => number;
|
|
801
811
|
toNumber: () => number;
|
|
802
812
|
toBytes: (le?: boolean) => number[];
|
|
@@ -805,7 +815,7 @@ export declare const WifiConnectTempInfo: {
|
|
|
805
815
|
toSigned: () => Long;
|
|
806
816
|
toString: (radix?: number) => string;
|
|
807
817
|
toUnsigned: () => Long;
|
|
808
|
-
xor: (other:
|
|
818
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
809
819
|
} & { [K in Exclude<keyof I["duration"], keyof Long>]: never; });
|
|
810
820
|
} & { [K_1 in Exclude<keyof I, keyof WifiConnectTempInfo>]: never; }>(base?: I): WifiConnectTempInfo;
|
|
811
821
|
fromPartial<I_1 extends {
|
|
@@ -819,40 +829,41 @@ export declare const WifiConnectTempInfo: {
|
|
|
819
829
|
high: number;
|
|
820
830
|
low: number;
|
|
821
831
|
unsigned: boolean;
|
|
822
|
-
add: (addend:
|
|
823
|
-
and: (other:
|
|
824
|
-
compare: (other:
|
|
825
|
-
comp: (other:
|
|
826
|
-
divide: (divisor:
|
|
827
|
-
div: (divisor:
|
|
828
|
-
equals: (other:
|
|
829
|
-
eq: (other:
|
|
832
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
833
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
834
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
835
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
836
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
837
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
838
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
839
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
830
840
|
getHighBits: () => number;
|
|
831
841
|
getHighBitsUnsigned: () => number;
|
|
832
842
|
getLowBits: () => number;
|
|
833
843
|
getLowBitsUnsigned: () => number;
|
|
834
844
|
getNumBitsAbs: () => number;
|
|
835
|
-
greaterThan: (other:
|
|
836
|
-
gt: (other:
|
|
837
|
-
greaterThanOrEqual: (other:
|
|
838
|
-
gte: (other:
|
|
839
|
-
ge: (other:
|
|
845
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
846
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
847
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
848
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
849
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
840
850
|
isEven: () => boolean;
|
|
841
851
|
isNegative: () => boolean;
|
|
842
852
|
isOdd: () => boolean;
|
|
843
853
|
isPositive: () => boolean;
|
|
854
|
+
isSafeInteger: () => boolean;
|
|
844
855
|
isZero: () => boolean;
|
|
845
856
|
eqz: () => boolean;
|
|
846
|
-
lessThan: (other:
|
|
847
|
-
lt: (other:
|
|
848
|
-
lessThanOrEqual: (other:
|
|
849
|
-
lte: (other:
|
|
850
|
-
le: (other:
|
|
851
|
-
modulo: (other:
|
|
852
|
-
mod: (other:
|
|
853
|
-
rem: (other:
|
|
854
|
-
multiply: (multiplier:
|
|
855
|
-
mul: (multiplier:
|
|
857
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
858
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
859
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
860
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
861
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
862
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
863
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
864
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
865
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
866
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
856
867
|
negate: () => Long;
|
|
857
868
|
neg: () => Long;
|
|
858
869
|
not: () => Long;
|
|
@@ -860,10 +871,10 @@ export declare const WifiConnectTempInfo: {
|
|
|
860
871
|
clz: () => number;
|
|
861
872
|
countTrailingZeros: () => number;
|
|
862
873
|
ctz: () => number;
|
|
863
|
-
notEquals: (other:
|
|
864
|
-
neq: (other:
|
|
865
|
-
ne: (other:
|
|
866
|
-
or: (other:
|
|
874
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
875
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
876
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
877
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
867
878
|
shiftLeft: (numBits: number | Long) => Long;
|
|
868
879
|
shl: (numBits: number | Long) => Long;
|
|
869
880
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -875,8 +886,9 @@ export declare const WifiConnectTempInfo: {
|
|
|
875
886
|
rotl: (numBits: number | Long) => Long;
|
|
876
887
|
rotateRight: (numBits: number | Long) => Long;
|
|
877
888
|
rotr: (numBits: number | Long) => Long;
|
|
878
|
-
subtract: (subtrahend:
|
|
879
|
-
sub: (subtrahend:
|
|
889
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
890
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
891
|
+
toBigInt: () => bigint;
|
|
880
892
|
toInt: () => number;
|
|
881
893
|
toNumber: () => number;
|
|
882
894
|
toBytes: (le?: boolean) => number[];
|
|
@@ -885,7 +897,7 @@ export declare const WifiConnectTempInfo: {
|
|
|
885
897
|
toSigned: () => Long;
|
|
886
898
|
toString: (radix?: number) => string;
|
|
887
899
|
toUnsigned: () => Long;
|
|
888
|
-
xor: (other:
|
|
900
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
889
901
|
} & { [K_2 in Exclude<keyof I_1["duration"], keyof Long>]: never; });
|
|
890
902
|
} & { [K_3 in Exclude<keyof I_1, keyof WifiConnectTempInfo>]: never; }>(object: I_1): WifiConnectTempInfo;
|
|
891
903
|
};
|