@lazycatcloud/sdk 0.1.477 → 0.1.478
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/common/box.d.ts +1664 -1560
- package/dist/common/box.d.ts.map +1 -1
- package/dist/common/file_handler.d.ts +1024 -960
- package/dist/common/file_handler.d.ts.map +1 -1
- package/dist/common/filetrans.d.ts +2688 -2520
- package/dist/common/filetrans.d.ts.map +1 -1
- package/dist/common/iscsi.d.ts +192 -180
- package/dist/common/iscsi.d.ts.map +1 -1
- package/dist/common/media_meta.d.ts +64 -60
- package/dist/common/media_meta.d.ts.map +1 -1
- package/dist/common/message.d.ts +448 -420
- package/dist/common/message.d.ts.map +1 -1
- package/dist/common/peripheral_device.d.ts +384 -360
- package/dist/common/peripheral_device.d.ts.map +1 -1
- package/dist/google/protobuf/timestamp.d.ts +64 -60
- package/dist/google/protobuf/timestamp.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/localdevice/client.d.ts +64 -60
- package/dist/localdevice/client.d.ts.map +1 -1
- package/dist/localdevice/contacts.d.ts +64 -60
- package/dist/localdevice/contacts.d.ts.map +1 -1
- package/dist/localdevice/photo.d.ts +192 -180
- package/dist/localdevice/photo.d.ts.map +1 -1
- package/dist/sys/btrfs.d.ts +192 -180
- package/dist/sys/btrfs.d.ts.map +1 -1
- package/dist/sys/hal.d.ts +128 -120
- package/dist/sys/hal.d.ts.map +1 -1
- package/dist/sys/ingress.d.ts +64 -60
- package/dist/sys/ingress.d.ts.map +1 -1
- package/dist/sys/network_manager.d.ts +192 -180
- package/dist/sys/network_manager.d.ts.map +1 -1
- package/dist/sys/package_manager.d.ts +9292 -8702
- package/dist/sys/package_manager.d.ts.map +1 -1
- package/dist/sys/package_manager.js +22 -5
- package/dist/sys/package_manager.js.map +1 -1
- package/dist/sys/stats/cgroup_metrics.d.ts +8768 -8220
- package/dist/sys/stats/cgroup_metrics.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -184,40 +184,41 @@ export declare const ListFilesystemsReply: {
|
|
|
184
184
|
high: number;
|
|
185
185
|
low: number;
|
|
186
186
|
unsigned: boolean;
|
|
187
|
-
add: (addend:
|
|
188
|
-
and: (other:
|
|
189
|
-
compare: (other:
|
|
190
|
-
comp: (other:
|
|
191
|
-
divide: (divisor:
|
|
192
|
-
div: (divisor:
|
|
193
|
-
equals: (other:
|
|
194
|
-
eq: (other:
|
|
187
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
188
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
189
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
190
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
191
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
192
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
193
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
194
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
195
195
|
getHighBits: () => number;
|
|
196
196
|
getHighBitsUnsigned: () => number;
|
|
197
197
|
getLowBits: () => number;
|
|
198
198
|
getLowBitsUnsigned: () => number;
|
|
199
199
|
getNumBitsAbs: () => number;
|
|
200
|
-
greaterThan: (other:
|
|
201
|
-
gt: (other:
|
|
202
|
-
greaterThanOrEqual: (other:
|
|
203
|
-
gte: (other:
|
|
204
|
-
ge: (other:
|
|
200
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
201
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
202
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
203
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
204
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
205
205
|
isEven: () => boolean;
|
|
206
206
|
isNegative: () => boolean;
|
|
207
207
|
isOdd: () => boolean;
|
|
208
208
|
isPositive: () => boolean;
|
|
209
|
+
isSafeInteger: () => boolean;
|
|
209
210
|
isZero: () => boolean;
|
|
210
211
|
eqz: () => boolean;
|
|
211
|
-
lessThan: (other:
|
|
212
|
-
lt: (other:
|
|
213
|
-
lessThanOrEqual: (other:
|
|
214
|
-
lte: (other:
|
|
215
|
-
le: (other:
|
|
216
|
-
modulo: (other:
|
|
217
|
-
mod: (other:
|
|
218
|
-
rem: (other:
|
|
219
|
-
multiply: (multiplier:
|
|
220
|
-
mul: (multiplier:
|
|
212
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
213
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
214
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
215
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
216
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
217
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
218
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
219
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
220
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
221
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
221
222
|
negate: () => Long;
|
|
222
223
|
neg: () => Long;
|
|
223
224
|
not: () => Long;
|
|
@@ -225,10 +226,10 @@ export declare const ListFilesystemsReply: {
|
|
|
225
226
|
clz: () => number;
|
|
226
227
|
countTrailingZeros: () => number;
|
|
227
228
|
ctz: () => number;
|
|
228
|
-
notEquals: (other:
|
|
229
|
-
neq: (other:
|
|
230
|
-
ne: (other:
|
|
231
|
-
or: (other:
|
|
229
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
230
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
231
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
232
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
232
233
|
shiftLeft: (numBits: number | Long) => Long;
|
|
233
234
|
shl: (numBits: number | Long) => Long;
|
|
234
235
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -240,8 +241,9 @@ export declare const ListFilesystemsReply: {
|
|
|
240
241
|
rotl: (numBits: number | Long) => Long;
|
|
241
242
|
rotateRight: (numBits: number | Long) => Long;
|
|
242
243
|
rotr: (numBits: number | Long) => Long;
|
|
243
|
-
subtract: (subtrahend:
|
|
244
|
-
sub: (subtrahend:
|
|
244
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
245
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
246
|
+
toBigInt: () => bigint;
|
|
245
247
|
toInt: () => number;
|
|
246
248
|
toNumber: () => number;
|
|
247
249
|
toBytes: (le?: boolean) => number[];
|
|
@@ -250,7 +252,7 @@ export declare const ListFilesystemsReply: {
|
|
|
250
252
|
toSigned: () => Long;
|
|
251
253
|
toString: (radix?: number) => string;
|
|
252
254
|
toUnsigned: () => Long;
|
|
253
|
-
xor: (other:
|
|
255
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
254
256
|
} & { [K in Exclude<keyof I["umounted"][number]["size"], keyof Long>]: never; });
|
|
255
257
|
uuid?: string | undefined;
|
|
256
258
|
mountpoint?: string | undefined;
|
|
@@ -259,40 +261,41 @@ export declare const ListFilesystemsReply: {
|
|
|
259
261
|
high: number;
|
|
260
262
|
low: number;
|
|
261
263
|
unsigned: boolean;
|
|
262
|
-
add: (addend:
|
|
263
|
-
and: (other:
|
|
264
|
-
compare: (other:
|
|
265
|
-
comp: (other:
|
|
266
|
-
divide: (divisor:
|
|
267
|
-
div: (divisor:
|
|
268
|
-
equals: (other:
|
|
269
|
-
eq: (other:
|
|
264
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
265
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
266
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
267
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
268
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
269
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
270
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
271
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
270
272
|
getHighBits: () => number;
|
|
271
273
|
getHighBitsUnsigned: () => number;
|
|
272
274
|
getLowBits: () => number;
|
|
273
275
|
getLowBitsUnsigned: () => number;
|
|
274
276
|
getNumBitsAbs: () => number;
|
|
275
|
-
greaterThan: (other:
|
|
276
|
-
gt: (other:
|
|
277
|
-
greaterThanOrEqual: (other:
|
|
278
|
-
gte: (other:
|
|
279
|
-
ge: (other:
|
|
277
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
278
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
279
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
280
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
281
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
280
282
|
isEven: () => boolean;
|
|
281
283
|
isNegative: () => boolean;
|
|
282
284
|
isOdd: () => boolean;
|
|
283
285
|
isPositive: () => boolean;
|
|
286
|
+
isSafeInteger: () => boolean;
|
|
284
287
|
isZero: () => boolean;
|
|
285
288
|
eqz: () => boolean;
|
|
286
|
-
lessThan: (other:
|
|
287
|
-
lt: (other:
|
|
288
|
-
lessThanOrEqual: (other:
|
|
289
|
-
lte: (other:
|
|
290
|
-
le: (other:
|
|
291
|
-
modulo: (other:
|
|
292
|
-
mod: (other:
|
|
293
|
-
rem: (other:
|
|
294
|
-
multiply: (multiplier:
|
|
295
|
-
mul: (multiplier:
|
|
289
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
290
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
291
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
292
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
293
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
294
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
295
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
296
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
297
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
298
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
296
299
|
negate: () => Long;
|
|
297
300
|
neg: () => Long;
|
|
298
301
|
not: () => Long;
|
|
@@ -300,10 +303,10 @@ export declare const ListFilesystemsReply: {
|
|
|
300
303
|
clz: () => number;
|
|
301
304
|
countTrailingZeros: () => number;
|
|
302
305
|
ctz: () => number;
|
|
303
|
-
notEquals: (other:
|
|
304
|
-
neq: (other:
|
|
305
|
-
ne: (other:
|
|
306
|
-
or: (other:
|
|
306
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
307
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
308
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
309
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
307
310
|
shiftLeft: (numBits: number | Long) => Long;
|
|
308
311
|
shl: (numBits: number | Long) => Long;
|
|
309
312
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -315,8 +318,9 @@ export declare const ListFilesystemsReply: {
|
|
|
315
318
|
rotl: (numBits: number | Long) => Long;
|
|
316
319
|
rotateRight: (numBits: number | Long) => Long;
|
|
317
320
|
rotr: (numBits: number | Long) => Long;
|
|
318
|
-
subtract: (subtrahend:
|
|
319
|
-
sub: (subtrahend:
|
|
321
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
322
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
323
|
+
toBigInt: () => bigint;
|
|
320
324
|
toInt: () => number;
|
|
321
325
|
toNumber: () => number;
|
|
322
326
|
toBytes: (le?: boolean) => number[];
|
|
@@ -325,7 +329,7 @@ export declare const ListFilesystemsReply: {
|
|
|
325
329
|
toSigned: () => Long;
|
|
326
330
|
toString: (radix?: number) => string;
|
|
327
331
|
toUnsigned: () => Long;
|
|
328
|
-
xor: (other:
|
|
332
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
329
333
|
} & { [K_1 in Exclude<keyof I["umounted"][number]["usedSize"], keyof Long>]: never; });
|
|
330
334
|
iscsiInfo?: {
|
|
331
335
|
address?: string;
|
|
@@ -392,40 +396,41 @@ export declare const ListFilesystemsReply: {
|
|
|
392
396
|
high: number;
|
|
393
397
|
low: number;
|
|
394
398
|
unsigned: boolean;
|
|
395
|
-
add: (addend:
|
|
396
|
-
and: (other:
|
|
397
|
-
compare: (other:
|
|
398
|
-
comp: (other:
|
|
399
|
-
divide: (divisor:
|
|
400
|
-
div: (divisor:
|
|
401
|
-
equals: (other:
|
|
402
|
-
eq: (other:
|
|
399
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
400
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
401
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
402
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
403
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
404
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
405
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
406
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
403
407
|
getHighBits: () => number;
|
|
404
408
|
getHighBitsUnsigned: () => number;
|
|
405
409
|
getLowBits: () => number;
|
|
406
410
|
getLowBitsUnsigned: () => number;
|
|
407
411
|
getNumBitsAbs: () => number;
|
|
408
|
-
greaterThan: (other:
|
|
409
|
-
gt: (other:
|
|
410
|
-
greaterThanOrEqual: (other:
|
|
411
|
-
gte: (other:
|
|
412
|
-
ge: (other:
|
|
412
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
413
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
414
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
415
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
416
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
413
417
|
isEven: () => boolean;
|
|
414
418
|
isNegative: () => boolean;
|
|
415
419
|
isOdd: () => boolean;
|
|
416
420
|
isPositive: () => boolean;
|
|
421
|
+
isSafeInteger: () => boolean;
|
|
417
422
|
isZero: () => boolean;
|
|
418
423
|
eqz: () => boolean;
|
|
419
|
-
lessThan: (other:
|
|
420
|
-
lt: (other:
|
|
421
|
-
lessThanOrEqual: (other:
|
|
422
|
-
lte: (other:
|
|
423
|
-
le: (other:
|
|
424
|
-
modulo: (other:
|
|
425
|
-
mod: (other:
|
|
426
|
-
rem: (other:
|
|
427
|
-
multiply: (multiplier:
|
|
428
|
-
mul: (multiplier:
|
|
424
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
425
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
426
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
427
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
428
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
429
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
430
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
431
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
432
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
433
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
429
434
|
negate: () => Long;
|
|
430
435
|
neg: () => Long;
|
|
431
436
|
not: () => Long;
|
|
@@ -433,10 +438,10 @@ export declare const ListFilesystemsReply: {
|
|
|
433
438
|
clz: () => number;
|
|
434
439
|
countTrailingZeros: () => number;
|
|
435
440
|
ctz: () => number;
|
|
436
|
-
notEquals: (other:
|
|
437
|
-
neq: (other:
|
|
438
|
-
ne: (other:
|
|
439
|
-
or: (other:
|
|
441
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
442
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
443
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
444
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
440
445
|
shiftLeft: (numBits: number | Long) => Long;
|
|
441
446
|
shl: (numBits: number | Long) => Long;
|
|
442
447
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -448,8 +453,9 @@ export declare const ListFilesystemsReply: {
|
|
|
448
453
|
rotl: (numBits: number | Long) => Long;
|
|
449
454
|
rotateRight: (numBits: number | Long) => Long;
|
|
450
455
|
rotr: (numBits: number | Long) => Long;
|
|
451
|
-
subtract: (subtrahend:
|
|
452
|
-
sub: (subtrahend:
|
|
456
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
457
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
458
|
+
toBigInt: () => bigint;
|
|
453
459
|
toInt: () => number;
|
|
454
460
|
toNumber: () => number;
|
|
455
461
|
toBytes: (le?: boolean) => number[];
|
|
@@ -458,7 +464,7 @@ export declare const ListFilesystemsReply: {
|
|
|
458
464
|
toSigned: () => Long;
|
|
459
465
|
toString: (radix?: number) => string;
|
|
460
466
|
toUnsigned: () => Long;
|
|
461
|
-
xor: (other:
|
|
467
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
462
468
|
} & { [K_5 in Exclude<keyof I["mounted"][number]["size"], keyof Long>]: never; });
|
|
463
469
|
uuid?: string | undefined;
|
|
464
470
|
mountpoint?: string | undefined;
|
|
@@ -467,40 +473,41 @@ export declare const ListFilesystemsReply: {
|
|
|
467
473
|
high: number;
|
|
468
474
|
low: number;
|
|
469
475
|
unsigned: boolean;
|
|
470
|
-
add: (addend:
|
|
471
|
-
and: (other:
|
|
472
|
-
compare: (other:
|
|
473
|
-
comp: (other:
|
|
474
|
-
divide: (divisor:
|
|
475
|
-
div: (divisor:
|
|
476
|
-
equals: (other:
|
|
477
|
-
eq: (other:
|
|
476
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
477
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
478
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
479
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
480
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
481
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
482
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
483
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
478
484
|
getHighBits: () => number;
|
|
479
485
|
getHighBitsUnsigned: () => number;
|
|
480
486
|
getLowBits: () => number;
|
|
481
487
|
getLowBitsUnsigned: () => number;
|
|
482
488
|
getNumBitsAbs: () => number;
|
|
483
|
-
greaterThan: (other:
|
|
484
|
-
gt: (other:
|
|
485
|
-
greaterThanOrEqual: (other:
|
|
486
|
-
gte: (other:
|
|
487
|
-
ge: (other:
|
|
489
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
490
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
491
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
492
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
493
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
488
494
|
isEven: () => boolean;
|
|
489
495
|
isNegative: () => boolean;
|
|
490
496
|
isOdd: () => boolean;
|
|
491
497
|
isPositive: () => boolean;
|
|
498
|
+
isSafeInteger: () => boolean;
|
|
492
499
|
isZero: () => boolean;
|
|
493
500
|
eqz: () => boolean;
|
|
494
|
-
lessThan: (other:
|
|
495
|
-
lt: (other:
|
|
496
|
-
lessThanOrEqual: (other:
|
|
497
|
-
lte: (other:
|
|
498
|
-
le: (other:
|
|
499
|
-
modulo: (other:
|
|
500
|
-
mod: (other:
|
|
501
|
-
rem: (other:
|
|
502
|
-
multiply: (multiplier:
|
|
503
|
-
mul: (multiplier:
|
|
501
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
502
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
503
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
504
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
505
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
506
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
507
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
508
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
509
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
510
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
504
511
|
negate: () => Long;
|
|
505
512
|
neg: () => Long;
|
|
506
513
|
not: () => Long;
|
|
@@ -508,10 +515,10 @@ export declare const ListFilesystemsReply: {
|
|
|
508
515
|
clz: () => number;
|
|
509
516
|
countTrailingZeros: () => number;
|
|
510
517
|
ctz: () => number;
|
|
511
|
-
notEquals: (other:
|
|
512
|
-
neq: (other:
|
|
513
|
-
ne: (other:
|
|
514
|
-
or: (other:
|
|
518
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
519
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
520
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
521
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
515
522
|
shiftLeft: (numBits: number | Long) => Long;
|
|
516
523
|
shl: (numBits: number | Long) => Long;
|
|
517
524
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -523,8 +530,9 @@ export declare const ListFilesystemsReply: {
|
|
|
523
530
|
rotl: (numBits: number | Long) => Long;
|
|
524
531
|
rotateRight: (numBits: number | Long) => Long;
|
|
525
532
|
rotr: (numBits: number | Long) => Long;
|
|
526
|
-
subtract: (subtrahend:
|
|
527
|
-
sub: (subtrahend:
|
|
533
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
534
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
535
|
+
toBigInt: () => bigint;
|
|
528
536
|
toInt: () => number;
|
|
529
537
|
toNumber: () => number;
|
|
530
538
|
toBytes: (le?: boolean) => number[];
|
|
@@ -533,7 +541,7 @@ export declare const ListFilesystemsReply: {
|
|
|
533
541
|
toSigned: () => Long;
|
|
534
542
|
toString: (radix?: number) => string;
|
|
535
543
|
toUnsigned: () => Long;
|
|
536
|
-
xor: (other:
|
|
544
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
537
545
|
} & { [K_6 in Exclude<keyof I["mounted"][number]["usedSize"], keyof Long>]: never; });
|
|
538
546
|
iscsiInfo?: {
|
|
539
547
|
address?: string;
|
|
@@ -635,40 +643,41 @@ export declare const ListFilesystemsReply: {
|
|
|
635
643
|
high: number;
|
|
636
644
|
low: number;
|
|
637
645
|
unsigned: boolean;
|
|
638
|
-
add: (addend:
|
|
639
|
-
and: (other:
|
|
640
|
-
compare: (other:
|
|
641
|
-
comp: (other:
|
|
642
|
-
divide: (divisor:
|
|
643
|
-
div: (divisor:
|
|
644
|
-
equals: (other:
|
|
645
|
-
eq: (other:
|
|
646
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
647
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
648
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
649
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
650
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
651
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
652
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
653
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
646
654
|
getHighBits: () => number;
|
|
647
655
|
getHighBitsUnsigned: () => number;
|
|
648
656
|
getLowBits: () => number;
|
|
649
657
|
getLowBitsUnsigned: () => number;
|
|
650
658
|
getNumBitsAbs: () => number;
|
|
651
|
-
greaterThan: (other:
|
|
652
|
-
gt: (other:
|
|
653
|
-
greaterThanOrEqual: (other:
|
|
654
|
-
gte: (other:
|
|
655
|
-
ge: (other:
|
|
659
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
660
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
661
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
662
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
663
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
656
664
|
isEven: () => boolean;
|
|
657
665
|
isNegative: () => boolean;
|
|
658
666
|
isOdd: () => boolean;
|
|
659
667
|
isPositive: () => boolean;
|
|
668
|
+
isSafeInteger: () => boolean;
|
|
660
669
|
isZero: () => boolean;
|
|
661
670
|
eqz: () => boolean;
|
|
662
|
-
lessThan: (other:
|
|
663
|
-
lt: (other:
|
|
664
|
-
lessThanOrEqual: (other:
|
|
665
|
-
lte: (other:
|
|
666
|
-
le: (other:
|
|
667
|
-
modulo: (other:
|
|
668
|
-
mod: (other:
|
|
669
|
-
rem: (other:
|
|
670
|
-
multiply: (multiplier:
|
|
671
|
-
mul: (multiplier:
|
|
671
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
672
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
673
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
674
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
675
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
676
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
677
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
678
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
679
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
680
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
672
681
|
negate: () => Long;
|
|
673
682
|
neg: () => Long;
|
|
674
683
|
not: () => Long;
|
|
@@ -676,10 +685,10 @@ export declare const ListFilesystemsReply: {
|
|
|
676
685
|
clz: () => number;
|
|
677
686
|
countTrailingZeros: () => number;
|
|
678
687
|
ctz: () => number;
|
|
679
|
-
notEquals: (other:
|
|
680
|
-
neq: (other:
|
|
681
|
-
ne: (other:
|
|
682
|
-
or: (other:
|
|
688
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
689
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
690
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
691
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
683
692
|
shiftLeft: (numBits: number | Long) => Long;
|
|
684
693
|
shl: (numBits: number | Long) => Long;
|
|
685
694
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -691,8 +700,9 @@ export declare const ListFilesystemsReply: {
|
|
|
691
700
|
rotl: (numBits: number | Long) => Long;
|
|
692
701
|
rotateRight: (numBits: number | Long) => Long;
|
|
693
702
|
rotr: (numBits: number | Long) => Long;
|
|
694
|
-
subtract: (subtrahend:
|
|
695
|
-
sub: (subtrahend:
|
|
703
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
704
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
705
|
+
toBigInt: () => bigint;
|
|
696
706
|
toInt: () => number;
|
|
697
707
|
toNumber: () => number;
|
|
698
708
|
toBytes: (le?: boolean) => number[];
|
|
@@ -701,7 +711,7 @@ export declare const ListFilesystemsReply: {
|
|
|
701
711
|
toSigned: () => Long;
|
|
702
712
|
toString: (radix?: number) => string;
|
|
703
713
|
toUnsigned: () => Long;
|
|
704
|
-
xor: (other:
|
|
714
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
705
715
|
} & { [K_11 in Exclude<keyof I_1["umounted"][number]["size"], keyof Long>]: never; });
|
|
706
716
|
uuid?: string | undefined;
|
|
707
717
|
mountpoint?: string | undefined;
|
|
@@ -710,40 +720,41 @@ export declare const ListFilesystemsReply: {
|
|
|
710
720
|
high: number;
|
|
711
721
|
low: number;
|
|
712
722
|
unsigned: boolean;
|
|
713
|
-
add: (addend:
|
|
714
|
-
and: (other:
|
|
715
|
-
compare: (other:
|
|
716
|
-
comp: (other:
|
|
717
|
-
divide: (divisor:
|
|
718
|
-
div: (divisor:
|
|
719
|
-
equals: (other:
|
|
720
|
-
eq: (other:
|
|
723
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
724
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
725
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
726
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
727
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
728
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
729
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
730
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
721
731
|
getHighBits: () => number;
|
|
722
732
|
getHighBitsUnsigned: () => number;
|
|
723
733
|
getLowBits: () => number;
|
|
724
734
|
getLowBitsUnsigned: () => number;
|
|
725
735
|
getNumBitsAbs: () => number;
|
|
726
|
-
greaterThan: (other:
|
|
727
|
-
gt: (other:
|
|
728
|
-
greaterThanOrEqual: (other:
|
|
729
|
-
gte: (other:
|
|
730
|
-
ge: (other:
|
|
736
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
737
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
738
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
739
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
740
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
731
741
|
isEven: () => boolean;
|
|
732
742
|
isNegative: () => boolean;
|
|
733
743
|
isOdd: () => boolean;
|
|
734
744
|
isPositive: () => boolean;
|
|
745
|
+
isSafeInteger: () => boolean;
|
|
735
746
|
isZero: () => boolean;
|
|
736
747
|
eqz: () => boolean;
|
|
737
|
-
lessThan: (other:
|
|
738
|
-
lt: (other:
|
|
739
|
-
lessThanOrEqual: (other:
|
|
740
|
-
lte: (other:
|
|
741
|
-
le: (other:
|
|
742
|
-
modulo: (other:
|
|
743
|
-
mod: (other:
|
|
744
|
-
rem: (other:
|
|
745
|
-
multiply: (multiplier:
|
|
746
|
-
mul: (multiplier:
|
|
748
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
749
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
750
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
751
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
752
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
753
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
754
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
755
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
756
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
757
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
747
758
|
negate: () => Long;
|
|
748
759
|
neg: () => Long;
|
|
749
760
|
not: () => Long;
|
|
@@ -751,10 +762,10 @@ export declare const ListFilesystemsReply: {
|
|
|
751
762
|
clz: () => number;
|
|
752
763
|
countTrailingZeros: () => number;
|
|
753
764
|
ctz: () => number;
|
|
754
|
-
notEquals: (other:
|
|
755
|
-
neq: (other:
|
|
756
|
-
ne: (other:
|
|
757
|
-
or: (other:
|
|
765
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
766
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
767
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
768
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
758
769
|
shiftLeft: (numBits: number | Long) => Long;
|
|
759
770
|
shl: (numBits: number | Long) => Long;
|
|
760
771
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -766,8 +777,9 @@ export declare const ListFilesystemsReply: {
|
|
|
766
777
|
rotl: (numBits: number | Long) => Long;
|
|
767
778
|
rotateRight: (numBits: number | Long) => Long;
|
|
768
779
|
rotr: (numBits: number | Long) => Long;
|
|
769
|
-
subtract: (subtrahend:
|
|
770
|
-
sub: (subtrahend:
|
|
780
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
781
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
782
|
+
toBigInt: () => bigint;
|
|
771
783
|
toInt: () => number;
|
|
772
784
|
toNumber: () => number;
|
|
773
785
|
toBytes: (le?: boolean) => number[];
|
|
@@ -776,7 +788,7 @@ export declare const ListFilesystemsReply: {
|
|
|
776
788
|
toSigned: () => Long;
|
|
777
789
|
toString: (radix?: number) => string;
|
|
778
790
|
toUnsigned: () => Long;
|
|
779
|
-
xor: (other:
|
|
791
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
780
792
|
} & { [K_12 in Exclude<keyof I_1["umounted"][number]["usedSize"], keyof Long>]: never; });
|
|
781
793
|
iscsiInfo?: {
|
|
782
794
|
address?: string;
|
|
@@ -843,40 +855,41 @@ export declare const ListFilesystemsReply: {
|
|
|
843
855
|
high: number;
|
|
844
856
|
low: number;
|
|
845
857
|
unsigned: boolean;
|
|
846
|
-
add: (addend:
|
|
847
|
-
and: (other:
|
|
848
|
-
compare: (other:
|
|
849
|
-
comp: (other:
|
|
850
|
-
divide: (divisor:
|
|
851
|
-
div: (divisor:
|
|
852
|
-
equals: (other:
|
|
853
|
-
eq: (other:
|
|
858
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
859
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
860
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
861
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
862
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
863
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
864
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
865
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
854
866
|
getHighBits: () => number;
|
|
855
867
|
getHighBitsUnsigned: () => number;
|
|
856
868
|
getLowBits: () => number;
|
|
857
869
|
getLowBitsUnsigned: () => number;
|
|
858
870
|
getNumBitsAbs: () => number;
|
|
859
|
-
greaterThan: (other:
|
|
860
|
-
gt: (other:
|
|
861
|
-
greaterThanOrEqual: (other:
|
|
862
|
-
gte: (other:
|
|
863
|
-
ge: (other:
|
|
871
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
872
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
873
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
874
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
875
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
864
876
|
isEven: () => boolean;
|
|
865
877
|
isNegative: () => boolean;
|
|
866
878
|
isOdd: () => boolean;
|
|
867
879
|
isPositive: () => boolean;
|
|
880
|
+
isSafeInteger: () => boolean;
|
|
868
881
|
isZero: () => boolean;
|
|
869
882
|
eqz: () => boolean;
|
|
870
|
-
lessThan: (other:
|
|
871
|
-
lt: (other:
|
|
872
|
-
lessThanOrEqual: (other:
|
|
873
|
-
lte: (other:
|
|
874
|
-
le: (other:
|
|
875
|
-
modulo: (other:
|
|
876
|
-
mod: (other:
|
|
877
|
-
rem: (other:
|
|
878
|
-
multiply: (multiplier:
|
|
879
|
-
mul: (multiplier:
|
|
883
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
884
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
885
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
886
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
887
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
888
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
889
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
890
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
891
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
892
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
880
893
|
negate: () => Long;
|
|
881
894
|
neg: () => Long;
|
|
882
895
|
not: () => Long;
|
|
@@ -884,10 +897,10 @@ export declare const ListFilesystemsReply: {
|
|
|
884
897
|
clz: () => number;
|
|
885
898
|
countTrailingZeros: () => number;
|
|
886
899
|
ctz: () => number;
|
|
887
|
-
notEquals: (other:
|
|
888
|
-
neq: (other:
|
|
889
|
-
ne: (other:
|
|
890
|
-
or: (other:
|
|
900
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
901
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
902
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
903
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
891
904
|
shiftLeft: (numBits: number | Long) => Long;
|
|
892
905
|
shl: (numBits: number | Long) => Long;
|
|
893
906
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -899,8 +912,9 @@ export declare const ListFilesystemsReply: {
|
|
|
899
912
|
rotl: (numBits: number | Long) => Long;
|
|
900
913
|
rotateRight: (numBits: number | Long) => Long;
|
|
901
914
|
rotr: (numBits: number | Long) => Long;
|
|
902
|
-
subtract: (subtrahend:
|
|
903
|
-
sub: (subtrahend:
|
|
915
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
916
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
917
|
+
toBigInt: () => bigint;
|
|
904
918
|
toInt: () => number;
|
|
905
919
|
toNumber: () => number;
|
|
906
920
|
toBytes: (le?: boolean) => number[];
|
|
@@ -909,7 +923,7 @@ export declare const ListFilesystemsReply: {
|
|
|
909
923
|
toSigned: () => Long;
|
|
910
924
|
toString: (radix?: number) => string;
|
|
911
925
|
toUnsigned: () => Long;
|
|
912
|
-
xor: (other:
|
|
926
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
913
927
|
} & { [K_16 in Exclude<keyof I_1["mounted"][number]["size"], keyof Long>]: never; });
|
|
914
928
|
uuid?: string | undefined;
|
|
915
929
|
mountpoint?: string | undefined;
|
|
@@ -918,40 +932,41 @@ export declare const ListFilesystemsReply: {
|
|
|
918
932
|
high: number;
|
|
919
933
|
low: number;
|
|
920
934
|
unsigned: boolean;
|
|
921
|
-
add: (addend:
|
|
922
|
-
and: (other:
|
|
923
|
-
compare: (other:
|
|
924
|
-
comp: (other:
|
|
925
|
-
divide: (divisor:
|
|
926
|
-
div: (divisor:
|
|
927
|
-
equals: (other:
|
|
928
|
-
eq: (other:
|
|
935
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
936
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
937
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
938
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
939
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
940
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
941
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
942
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
929
943
|
getHighBits: () => number;
|
|
930
944
|
getHighBitsUnsigned: () => number;
|
|
931
945
|
getLowBits: () => number;
|
|
932
946
|
getLowBitsUnsigned: () => number;
|
|
933
947
|
getNumBitsAbs: () => number;
|
|
934
|
-
greaterThan: (other:
|
|
935
|
-
gt: (other:
|
|
936
|
-
greaterThanOrEqual: (other:
|
|
937
|
-
gte: (other:
|
|
938
|
-
ge: (other:
|
|
948
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
949
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
950
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
951
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
952
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
939
953
|
isEven: () => boolean;
|
|
940
954
|
isNegative: () => boolean;
|
|
941
955
|
isOdd: () => boolean;
|
|
942
956
|
isPositive: () => boolean;
|
|
957
|
+
isSafeInteger: () => boolean;
|
|
943
958
|
isZero: () => boolean;
|
|
944
959
|
eqz: () => boolean;
|
|
945
|
-
lessThan: (other:
|
|
946
|
-
lt: (other:
|
|
947
|
-
lessThanOrEqual: (other:
|
|
948
|
-
lte: (other:
|
|
949
|
-
le: (other:
|
|
950
|
-
modulo: (other:
|
|
951
|
-
mod: (other:
|
|
952
|
-
rem: (other:
|
|
953
|
-
multiply: (multiplier:
|
|
954
|
-
mul: (multiplier:
|
|
960
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
961
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
962
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
963
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
964
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
965
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
966
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
967
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
968
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
969
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
955
970
|
negate: () => Long;
|
|
956
971
|
neg: () => Long;
|
|
957
972
|
not: () => Long;
|
|
@@ -959,10 +974,10 @@ export declare const ListFilesystemsReply: {
|
|
|
959
974
|
clz: () => number;
|
|
960
975
|
countTrailingZeros: () => number;
|
|
961
976
|
ctz: () => number;
|
|
962
|
-
notEquals: (other:
|
|
963
|
-
neq: (other:
|
|
964
|
-
ne: (other:
|
|
965
|
-
or: (other:
|
|
977
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
978
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
979
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
980
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
966
981
|
shiftLeft: (numBits: number | Long) => Long;
|
|
967
982
|
shl: (numBits: number | Long) => Long;
|
|
968
983
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -974,8 +989,9 @@ export declare const ListFilesystemsReply: {
|
|
|
974
989
|
rotl: (numBits: number | Long) => Long;
|
|
975
990
|
rotateRight: (numBits: number | Long) => Long;
|
|
976
991
|
rotr: (numBits: number | Long) => Long;
|
|
977
|
-
subtract: (subtrahend:
|
|
978
|
-
sub: (subtrahend:
|
|
992
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
993
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
994
|
+
toBigInt: () => bigint;
|
|
979
995
|
toInt: () => number;
|
|
980
996
|
toNumber: () => number;
|
|
981
997
|
toBytes: (le?: boolean) => number[];
|
|
@@ -984,7 +1000,7 @@ export declare const ListFilesystemsReply: {
|
|
|
984
1000
|
toSigned: () => Long;
|
|
985
1001
|
toString: (radix?: number) => string;
|
|
986
1002
|
toUnsigned: () => Long;
|
|
987
|
-
xor: (other:
|
|
1003
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
988
1004
|
} & { [K_17 in Exclude<keyof I_1["mounted"][number]["usedSize"], keyof Long>]: never; });
|
|
989
1005
|
iscsiInfo?: {
|
|
990
1006
|
address?: string;
|
|
@@ -1043,40 +1059,41 @@ export declare const Filesystem: {
|
|
|
1043
1059
|
high: number;
|
|
1044
1060
|
low: number;
|
|
1045
1061
|
unsigned: boolean;
|
|
1046
|
-
add: (addend:
|
|
1047
|
-
and: (other:
|
|
1048
|
-
compare: (other:
|
|
1049
|
-
comp: (other:
|
|
1050
|
-
divide: (divisor:
|
|
1051
|
-
div: (divisor:
|
|
1052
|
-
equals: (other:
|
|
1053
|
-
eq: (other:
|
|
1062
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
1063
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
1064
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
1065
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
1066
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
1067
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
1068
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
1069
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
1054
1070
|
getHighBits: () => number;
|
|
1055
1071
|
getHighBitsUnsigned: () => number;
|
|
1056
1072
|
getLowBits: () => number;
|
|
1057
1073
|
getLowBitsUnsigned: () => number;
|
|
1058
1074
|
getNumBitsAbs: () => number;
|
|
1059
|
-
greaterThan: (other:
|
|
1060
|
-
gt: (other:
|
|
1061
|
-
greaterThanOrEqual: (other:
|
|
1062
|
-
gte: (other:
|
|
1063
|
-
ge: (other:
|
|
1075
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
1076
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
1077
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
1078
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
1079
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
1064
1080
|
isEven: () => boolean;
|
|
1065
1081
|
isNegative: () => boolean;
|
|
1066
1082
|
isOdd: () => boolean;
|
|
1067
1083
|
isPositive: () => boolean;
|
|
1084
|
+
isSafeInteger: () => boolean;
|
|
1068
1085
|
isZero: () => boolean;
|
|
1069
1086
|
eqz: () => boolean;
|
|
1070
|
-
lessThan: (other:
|
|
1071
|
-
lt: (other:
|
|
1072
|
-
lessThanOrEqual: (other:
|
|
1073
|
-
lte: (other:
|
|
1074
|
-
le: (other:
|
|
1075
|
-
modulo: (other:
|
|
1076
|
-
mod: (other:
|
|
1077
|
-
rem: (other:
|
|
1078
|
-
multiply: (multiplier:
|
|
1079
|
-
mul: (multiplier:
|
|
1087
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
1088
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
1089
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
1090
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
1091
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
1092
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
1093
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
1094
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
1095
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
1096
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
1080
1097
|
negate: () => Long;
|
|
1081
1098
|
neg: () => Long;
|
|
1082
1099
|
not: () => Long;
|
|
@@ -1084,10 +1101,10 @@ export declare const Filesystem: {
|
|
|
1084
1101
|
clz: () => number;
|
|
1085
1102
|
countTrailingZeros: () => number;
|
|
1086
1103
|
ctz: () => number;
|
|
1087
|
-
notEquals: (other:
|
|
1088
|
-
neq: (other:
|
|
1089
|
-
ne: (other:
|
|
1090
|
-
or: (other:
|
|
1104
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
1105
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
1106
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
1107
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
1091
1108
|
shiftLeft: (numBits: number | Long) => Long;
|
|
1092
1109
|
shl: (numBits: number | Long) => Long;
|
|
1093
1110
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -1099,8 +1116,9 @@ export declare const Filesystem: {
|
|
|
1099
1116
|
rotl: (numBits: number | Long) => Long;
|
|
1100
1117
|
rotateRight: (numBits: number | Long) => Long;
|
|
1101
1118
|
rotr: (numBits: number | Long) => Long;
|
|
1102
|
-
subtract: (subtrahend:
|
|
1103
|
-
sub: (subtrahend:
|
|
1119
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1120
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1121
|
+
toBigInt: () => bigint;
|
|
1104
1122
|
toInt: () => number;
|
|
1105
1123
|
toNumber: () => number;
|
|
1106
1124
|
toBytes: (le?: boolean) => number[];
|
|
@@ -1109,7 +1127,7 @@ export declare const Filesystem: {
|
|
|
1109
1127
|
toSigned: () => Long;
|
|
1110
1128
|
toString: (radix?: number) => string;
|
|
1111
1129
|
toUnsigned: () => Long;
|
|
1112
|
-
xor: (other:
|
|
1130
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
1113
1131
|
} & { [K in Exclude<keyof I["size"], keyof Long>]: never; });
|
|
1114
1132
|
uuid?: string | undefined;
|
|
1115
1133
|
mountpoint?: string | undefined;
|
|
@@ -1118,40 +1136,41 @@ export declare const Filesystem: {
|
|
|
1118
1136
|
high: number;
|
|
1119
1137
|
low: number;
|
|
1120
1138
|
unsigned: boolean;
|
|
1121
|
-
add: (addend:
|
|
1122
|
-
and: (other:
|
|
1123
|
-
compare: (other:
|
|
1124
|
-
comp: (other:
|
|
1125
|
-
divide: (divisor:
|
|
1126
|
-
div: (divisor:
|
|
1127
|
-
equals: (other:
|
|
1128
|
-
eq: (other:
|
|
1139
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
1140
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
1141
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
1142
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
1143
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
1144
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
1145
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
1146
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
1129
1147
|
getHighBits: () => number;
|
|
1130
1148
|
getHighBitsUnsigned: () => number;
|
|
1131
1149
|
getLowBits: () => number;
|
|
1132
1150
|
getLowBitsUnsigned: () => number;
|
|
1133
1151
|
getNumBitsAbs: () => number;
|
|
1134
|
-
greaterThan: (other:
|
|
1135
|
-
gt: (other:
|
|
1136
|
-
greaterThanOrEqual: (other:
|
|
1137
|
-
gte: (other:
|
|
1138
|
-
ge: (other:
|
|
1152
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
1153
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
1154
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
1155
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
1156
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
1139
1157
|
isEven: () => boolean;
|
|
1140
1158
|
isNegative: () => boolean;
|
|
1141
1159
|
isOdd: () => boolean;
|
|
1142
1160
|
isPositive: () => boolean;
|
|
1161
|
+
isSafeInteger: () => boolean;
|
|
1143
1162
|
isZero: () => boolean;
|
|
1144
1163
|
eqz: () => boolean;
|
|
1145
|
-
lessThan: (other:
|
|
1146
|
-
lt: (other:
|
|
1147
|
-
lessThanOrEqual: (other:
|
|
1148
|
-
lte: (other:
|
|
1149
|
-
le: (other:
|
|
1150
|
-
modulo: (other:
|
|
1151
|
-
mod: (other:
|
|
1152
|
-
rem: (other:
|
|
1153
|
-
multiply: (multiplier:
|
|
1154
|
-
mul: (multiplier:
|
|
1164
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
1165
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
1166
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
1167
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
1168
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
1169
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
1170
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
1171
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
1172
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
1173
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
1155
1174
|
negate: () => Long;
|
|
1156
1175
|
neg: () => Long;
|
|
1157
1176
|
not: () => Long;
|
|
@@ -1159,10 +1178,10 @@ export declare const Filesystem: {
|
|
|
1159
1178
|
clz: () => number;
|
|
1160
1179
|
countTrailingZeros: () => number;
|
|
1161
1180
|
ctz: () => number;
|
|
1162
|
-
notEquals: (other:
|
|
1163
|
-
neq: (other:
|
|
1164
|
-
ne: (other:
|
|
1165
|
-
or: (other:
|
|
1181
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
1182
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
1183
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
1184
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
1166
1185
|
shiftLeft: (numBits: number | Long) => Long;
|
|
1167
1186
|
shl: (numBits: number | Long) => Long;
|
|
1168
1187
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -1174,8 +1193,9 @@ export declare const Filesystem: {
|
|
|
1174
1193
|
rotl: (numBits: number | Long) => Long;
|
|
1175
1194
|
rotateRight: (numBits: number | Long) => Long;
|
|
1176
1195
|
rotr: (numBits: number | Long) => Long;
|
|
1177
|
-
subtract: (subtrahend:
|
|
1178
|
-
sub: (subtrahend:
|
|
1196
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1197
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1198
|
+
toBigInt: () => bigint;
|
|
1179
1199
|
toInt: () => number;
|
|
1180
1200
|
toNumber: () => number;
|
|
1181
1201
|
toBytes: (le?: boolean) => number[];
|
|
@@ -1184,7 +1204,7 @@ export declare const Filesystem: {
|
|
|
1184
1204
|
toSigned: () => Long;
|
|
1185
1205
|
toString: (radix?: number) => string;
|
|
1186
1206
|
toUnsigned: () => Long;
|
|
1187
|
-
xor: (other:
|
|
1207
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
1188
1208
|
} & { [K_1 in Exclude<keyof I["usedSize"], keyof Long>]: never; });
|
|
1189
1209
|
iscsiInfo?: {
|
|
1190
1210
|
address?: string;
|
|
@@ -1221,40 +1241,41 @@ export declare const Filesystem: {
|
|
|
1221
1241
|
high: number;
|
|
1222
1242
|
low: number;
|
|
1223
1243
|
unsigned: boolean;
|
|
1224
|
-
add: (addend:
|
|
1225
|
-
and: (other:
|
|
1226
|
-
compare: (other:
|
|
1227
|
-
comp: (other:
|
|
1228
|
-
divide: (divisor:
|
|
1229
|
-
div: (divisor:
|
|
1230
|
-
equals: (other:
|
|
1231
|
-
eq: (other:
|
|
1244
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
1245
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
1246
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
1247
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
1248
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
1249
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
1250
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
1251
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
1232
1252
|
getHighBits: () => number;
|
|
1233
1253
|
getHighBitsUnsigned: () => number;
|
|
1234
1254
|
getLowBits: () => number;
|
|
1235
1255
|
getLowBitsUnsigned: () => number;
|
|
1236
1256
|
getNumBitsAbs: () => number;
|
|
1237
|
-
greaterThan: (other:
|
|
1238
|
-
gt: (other:
|
|
1239
|
-
greaterThanOrEqual: (other:
|
|
1240
|
-
gte: (other:
|
|
1241
|
-
ge: (other:
|
|
1257
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
1258
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
1259
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
1260
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
1261
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
1242
1262
|
isEven: () => boolean;
|
|
1243
1263
|
isNegative: () => boolean;
|
|
1244
1264
|
isOdd: () => boolean;
|
|
1245
1265
|
isPositive: () => boolean;
|
|
1266
|
+
isSafeInteger: () => boolean;
|
|
1246
1267
|
isZero: () => boolean;
|
|
1247
1268
|
eqz: () => boolean;
|
|
1248
|
-
lessThan: (other:
|
|
1249
|
-
lt: (other:
|
|
1250
|
-
lessThanOrEqual: (other:
|
|
1251
|
-
lte: (other:
|
|
1252
|
-
le: (other:
|
|
1253
|
-
modulo: (other:
|
|
1254
|
-
mod: (other:
|
|
1255
|
-
rem: (other:
|
|
1256
|
-
multiply: (multiplier:
|
|
1257
|
-
mul: (multiplier:
|
|
1269
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
1270
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
1271
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
1272
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
1273
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
1274
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
1275
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
1276
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
1277
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
1278
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
1258
1279
|
negate: () => Long;
|
|
1259
1280
|
neg: () => Long;
|
|
1260
1281
|
not: () => Long;
|
|
@@ -1262,10 +1283,10 @@ export declare const Filesystem: {
|
|
|
1262
1283
|
clz: () => number;
|
|
1263
1284
|
countTrailingZeros: () => number;
|
|
1264
1285
|
ctz: () => number;
|
|
1265
|
-
notEquals: (other:
|
|
1266
|
-
neq: (other:
|
|
1267
|
-
ne: (other:
|
|
1268
|
-
or: (other:
|
|
1286
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
1287
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
1288
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
1289
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
1269
1290
|
shiftLeft: (numBits: number | Long) => Long;
|
|
1270
1291
|
shl: (numBits: number | Long) => Long;
|
|
1271
1292
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -1277,8 +1298,9 @@ export declare const Filesystem: {
|
|
|
1277
1298
|
rotl: (numBits: number | Long) => Long;
|
|
1278
1299
|
rotateRight: (numBits: number | Long) => Long;
|
|
1279
1300
|
rotr: (numBits: number | Long) => Long;
|
|
1280
|
-
subtract: (subtrahend:
|
|
1281
|
-
sub: (subtrahend:
|
|
1301
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1302
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1303
|
+
toBigInt: () => bigint;
|
|
1282
1304
|
toInt: () => number;
|
|
1283
1305
|
toNumber: () => number;
|
|
1284
1306
|
toBytes: (le?: boolean) => number[];
|
|
@@ -1287,7 +1309,7 @@ export declare const Filesystem: {
|
|
|
1287
1309
|
toSigned: () => Long;
|
|
1288
1310
|
toString: (radix?: number) => string;
|
|
1289
1311
|
toUnsigned: () => Long;
|
|
1290
|
-
xor: (other:
|
|
1312
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
1291
1313
|
} & { [K_4 in Exclude<keyof I_1["size"], keyof Long>]: never; });
|
|
1292
1314
|
uuid?: string | undefined;
|
|
1293
1315
|
mountpoint?: string | undefined;
|
|
@@ -1296,40 +1318,41 @@ export declare const Filesystem: {
|
|
|
1296
1318
|
high: number;
|
|
1297
1319
|
low: number;
|
|
1298
1320
|
unsigned: boolean;
|
|
1299
|
-
add: (addend:
|
|
1300
|
-
and: (other:
|
|
1301
|
-
compare: (other:
|
|
1302
|
-
comp: (other:
|
|
1303
|
-
divide: (divisor:
|
|
1304
|
-
div: (divisor:
|
|
1305
|
-
equals: (other:
|
|
1306
|
-
eq: (other:
|
|
1321
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
1322
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
1323
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
1324
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
1325
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
1326
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
1327
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
1328
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
1307
1329
|
getHighBits: () => number;
|
|
1308
1330
|
getHighBitsUnsigned: () => number;
|
|
1309
1331
|
getLowBits: () => number;
|
|
1310
1332
|
getLowBitsUnsigned: () => number;
|
|
1311
1333
|
getNumBitsAbs: () => number;
|
|
1312
|
-
greaterThan: (other:
|
|
1313
|
-
gt: (other:
|
|
1314
|
-
greaterThanOrEqual: (other:
|
|
1315
|
-
gte: (other:
|
|
1316
|
-
ge: (other:
|
|
1334
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
1335
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
1336
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
1337
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
1338
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
1317
1339
|
isEven: () => boolean;
|
|
1318
1340
|
isNegative: () => boolean;
|
|
1319
1341
|
isOdd: () => boolean;
|
|
1320
1342
|
isPositive: () => boolean;
|
|
1343
|
+
isSafeInteger: () => boolean;
|
|
1321
1344
|
isZero: () => boolean;
|
|
1322
1345
|
eqz: () => boolean;
|
|
1323
|
-
lessThan: (other:
|
|
1324
|
-
lt: (other:
|
|
1325
|
-
lessThanOrEqual: (other:
|
|
1326
|
-
lte: (other:
|
|
1327
|
-
le: (other:
|
|
1328
|
-
modulo: (other:
|
|
1329
|
-
mod: (other:
|
|
1330
|
-
rem: (other:
|
|
1331
|
-
multiply: (multiplier:
|
|
1332
|
-
mul: (multiplier:
|
|
1346
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
1347
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
1348
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
1349
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
1350
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
1351
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
1352
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
1353
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
1354
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
1355
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
1333
1356
|
negate: () => Long;
|
|
1334
1357
|
neg: () => Long;
|
|
1335
1358
|
not: () => Long;
|
|
@@ -1337,10 +1360,10 @@ export declare const Filesystem: {
|
|
|
1337
1360
|
clz: () => number;
|
|
1338
1361
|
countTrailingZeros: () => number;
|
|
1339
1362
|
ctz: () => number;
|
|
1340
|
-
notEquals: (other:
|
|
1341
|
-
neq: (other:
|
|
1342
|
-
ne: (other:
|
|
1343
|
-
or: (other:
|
|
1363
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
1364
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
1365
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
1366
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
1344
1367
|
shiftLeft: (numBits: number | Long) => Long;
|
|
1345
1368
|
shl: (numBits: number | Long) => Long;
|
|
1346
1369
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -1352,8 +1375,9 @@ export declare const Filesystem: {
|
|
|
1352
1375
|
rotl: (numBits: number | Long) => Long;
|
|
1353
1376
|
rotateRight: (numBits: number | Long) => Long;
|
|
1354
1377
|
rotr: (numBits: number | Long) => Long;
|
|
1355
|
-
subtract: (subtrahend:
|
|
1356
|
-
sub: (subtrahend:
|
|
1378
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1379
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1380
|
+
toBigInt: () => bigint;
|
|
1357
1381
|
toInt: () => number;
|
|
1358
1382
|
toNumber: () => number;
|
|
1359
1383
|
toBytes: (le?: boolean) => number[];
|
|
@@ -1362,7 +1386,7 @@ export declare const Filesystem: {
|
|
|
1362
1386
|
toSigned: () => Long;
|
|
1363
1387
|
toString: (radix?: number) => string;
|
|
1364
1388
|
toUnsigned: () => Long;
|
|
1365
|
-
xor: (other:
|
|
1389
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
1366
1390
|
} & { [K_5 in Exclude<keyof I_1["usedSize"], keyof Long>]: never; });
|
|
1367
1391
|
iscsiInfo?: {
|
|
1368
1392
|
address?: string;
|