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