@lazycatcloud/sdk 0.1.470 → 0.1.472
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/common/box.d.ts +1664 -1560
- package/dist/common/box.d.ts.map +1 -1
- package/dist/common/file_handler.d.ts +1024 -960
- package/dist/common/file_handler.d.ts.map +1 -1
- package/dist/common/filetrans.d.ts +2688 -2520
- package/dist/common/filetrans.d.ts.map +1 -1
- package/dist/common/media_meta.d.ts +64 -60
- package/dist/common/media_meta.d.ts.map +1 -1
- package/dist/common/message.d.ts +448 -420
- package/dist/common/message.d.ts.map +1 -1
- package/dist/common/peripheral_device.d.ts +384 -360
- package/dist/common/peripheral_device.d.ts.map +1 -1
- package/dist/extentions/app_common.d.ts.map +1 -1
- package/dist/extentions/app_common.js +4 -0
- package/dist/extentions/app_common.js.map +1 -1
- package/dist/extentions/client_authorization.d.ts +2 -1
- package/dist/extentions/client_authorization.d.ts.map +1 -1
- package/dist/extentions/client_authorization.js +2 -1
- package/dist/extentions/client_authorization.js.map +1 -1
- package/dist/google/protobuf/timestamp.d.ts +64 -60
- package/dist/google/protobuf/timestamp.d.ts.map +1 -1
- package/dist/localdevice/ble.d.ts +33 -0
- package/dist/localdevice/ble.d.ts.map +1 -1
- package/dist/localdevice/ble.js +112 -1
- package/dist/localdevice/ble.js.map +1 -1
- package/dist/localdevice/client.d.ts +64 -60
- package/dist/localdevice/client.d.ts.map +1 -1
- package/dist/localdevice/contacts.d.ts +64 -60
- package/dist/localdevice/contacts.d.ts.map +1 -1
- package/dist/localdevice/photo.d.ts +192 -180
- package/dist/localdevice/photo.d.ts.map +1 -1
- package/dist/package.json +1 -1
- package/dist/sys/btrfs.d.ts +192 -180
- package/dist/sys/btrfs.d.ts.map +1 -1
- package/dist/sys/hal.d.ts +128 -120
- package/dist/sys/hal.d.ts.map +1 -1
- package/dist/sys/ingress.d.ts +64 -60
- package/dist/sys/ingress.d.ts.map +1 -1
- package/dist/sys/network_manager.d.ts +192 -180
- package/dist/sys/network_manager.d.ts.map +1 -1
- package/dist/sys/package_manager.d.ts +9280 -8700
- package/dist/sys/package_manager.d.ts.map +1 -1
- package/dist/sys/stats/cgroup_metrics.d.ts +8768 -8220
- package/dist/sys/stats/cgroup_metrics.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/sys/btrfs.d.ts
CHANGED
|
@@ -81,40 +81,41 @@ export declare const BtrfsSubvolInfoResponse: {
|
|
|
81
81
|
high: number;
|
|
82
82
|
low: number;
|
|
83
83
|
unsigned: boolean;
|
|
84
|
-
add: (addend:
|
|
85
|
-
and: (other:
|
|
86
|
-
compare: (other:
|
|
87
|
-
comp: (other:
|
|
88
|
-
divide: (divisor:
|
|
89
|
-
div: (divisor:
|
|
90
|
-
equals: (other:
|
|
91
|
-
eq: (other:
|
|
84
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
85
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
86
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
87
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
88
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
89
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
90
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
91
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
92
92
|
getHighBits: () => number;
|
|
93
93
|
getHighBitsUnsigned: () => number;
|
|
94
94
|
getLowBits: () => number;
|
|
95
95
|
getLowBitsUnsigned: () => number;
|
|
96
96
|
getNumBitsAbs: () => number;
|
|
97
|
-
greaterThan: (other:
|
|
98
|
-
gt: (other:
|
|
99
|
-
greaterThanOrEqual: (other:
|
|
100
|
-
gte: (other:
|
|
101
|
-
ge: (other:
|
|
97
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
98
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
99
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
100
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
101
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
102
102
|
isEven: () => boolean;
|
|
103
103
|
isNegative: () => boolean;
|
|
104
104
|
isOdd: () => boolean;
|
|
105
105
|
isPositive: () => boolean;
|
|
106
|
+
isSafeInteger: () => boolean;
|
|
106
107
|
isZero: () => boolean;
|
|
107
108
|
eqz: () => boolean;
|
|
108
|
-
lessThan: (other:
|
|
109
|
-
lt: (other:
|
|
110
|
-
lessThanOrEqual: (other:
|
|
111
|
-
lte: (other:
|
|
112
|
-
le: (other:
|
|
113
|
-
modulo: (other:
|
|
114
|
-
mod: (other:
|
|
115
|
-
rem: (other:
|
|
116
|
-
multiply: (multiplier:
|
|
117
|
-
mul: (multiplier:
|
|
109
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
110
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
111
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
112
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
113
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
114
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
115
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
116
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
117
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
118
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
118
119
|
negate: () => Long;
|
|
119
120
|
neg: () => Long;
|
|
120
121
|
not: () => Long;
|
|
@@ -122,10 +123,10 @@ export declare const BtrfsSubvolInfoResponse: {
|
|
|
122
123
|
clz: () => number;
|
|
123
124
|
countTrailingZeros: () => number;
|
|
124
125
|
ctz: () => number;
|
|
125
|
-
notEquals: (other:
|
|
126
|
-
neq: (other:
|
|
127
|
-
ne: (other:
|
|
128
|
-
or: (other:
|
|
126
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
127
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
128
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
129
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
129
130
|
shiftLeft: (numBits: number | Long) => Long;
|
|
130
131
|
shl: (numBits: number | Long) => Long;
|
|
131
132
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -137,8 +138,9 @@ export declare const BtrfsSubvolInfoResponse: {
|
|
|
137
138
|
rotl: (numBits: number | Long) => Long;
|
|
138
139
|
rotateRight: (numBits: number | Long) => Long;
|
|
139
140
|
rotr: (numBits: number | Long) => Long;
|
|
140
|
-
subtract: (subtrahend:
|
|
141
|
-
sub: (subtrahend:
|
|
141
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
142
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
143
|
+
toBigInt: () => bigint;
|
|
142
144
|
toInt: () => number;
|
|
143
145
|
toNumber: () => number;
|
|
144
146
|
toBytes: (le?: boolean) => number[];
|
|
@@ -147,7 +149,7 @@ export declare const BtrfsSubvolInfoResponse: {
|
|
|
147
149
|
toSigned: () => Long;
|
|
148
150
|
toString: (radix?: number) => string;
|
|
149
151
|
toUnsigned: () => Long;
|
|
150
|
-
xor: (other:
|
|
152
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
151
153
|
} & { [K in Exclude<keyof I["gen"], keyof Long>]: never; });
|
|
152
154
|
} & { [K_1 in Exclude<keyof I, keyof BtrfsSubvolInfoResponse>]: never; }>(base?: I): BtrfsSubvolInfoResponse;
|
|
153
155
|
fromPartial<I_1 extends {
|
|
@@ -159,40 +161,41 @@ export declare const BtrfsSubvolInfoResponse: {
|
|
|
159
161
|
high: number;
|
|
160
162
|
low: number;
|
|
161
163
|
unsigned: boolean;
|
|
162
|
-
add: (addend:
|
|
163
|
-
and: (other:
|
|
164
|
-
compare: (other:
|
|
165
|
-
comp: (other:
|
|
166
|
-
divide: (divisor:
|
|
167
|
-
div: (divisor:
|
|
168
|
-
equals: (other:
|
|
169
|
-
eq: (other:
|
|
164
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
165
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
166
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
167
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
168
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
169
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
170
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
171
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
170
172
|
getHighBits: () => number;
|
|
171
173
|
getHighBitsUnsigned: () => number;
|
|
172
174
|
getLowBits: () => number;
|
|
173
175
|
getLowBitsUnsigned: () => number;
|
|
174
176
|
getNumBitsAbs: () => number;
|
|
175
|
-
greaterThan: (other:
|
|
176
|
-
gt: (other:
|
|
177
|
-
greaterThanOrEqual: (other:
|
|
178
|
-
gte: (other:
|
|
179
|
-
ge: (other:
|
|
177
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
178
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
179
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
180
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
181
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
180
182
|
isEven: () => boolean;
|
|
181
183
|
isNegative: () => boolean;
|
|
182
184
|
isOdd: () => boolean;
|
|
183
185
|
isPositive: () => boolean;
|
|
186
|
+
isSafeInteger: () => boolean;
|
|
184
187
|
isZero: () => boolean;
|
|
185
188
|
eqz: () => boolean;
|
|
186
|
-
lessThan: (other:
|
|
187
|
-
lt: (other:
|
|
188
|
-
lessThanOrEqual: (other:
|
|
189
|
-
lte: (other:
|
|
190
|
-
le: (other:
|
|
191
|
-
modulo: (other:
|
|
192
|
-
mod: (other:
|
|
193
|
-
rem: (other:
|
|
194
|
-
multiply: (multiplier:
|
|
195
|
-
mul: (multiplier:
|
|
189
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
190
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
191
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
192
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
193
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
194
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
195
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
196
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
197
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
198
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
196
199
|
negate: () => Long;
|
|
197
200
|
neg: () => Long;
|
|
198
201
|
not: () => Long;
|
|
@@ -200,10 +203,10 @@ export declare const BtrfsSubvolInfoResponse: {
|
|
|
200
203
|
clz: () => number;
|
|
201
204
|
countTrailingZeros: () => number;
|
|
202
205
|
ctz: () => number;
|
|
203
|
-
notEquals: (other:
|
|
204
|
-
neq: (other:
|
|
205
|
-
ne: (other:
|
|
206
|
-
or: (other:
|
|
206
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
207
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
208
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
209
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
207
210
|
shiftLeft: (numBits: number | Long) => Long;
|
|
208
211
|
shl: (numBits: number | Long) => Long;
|
|
209
212
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -215,8 +218,9 @@ export declare const BtrfsSubvolInfoResponse: {
|
|
|
215
218
|
rotl: (numBits: number | Long) => Long;
|
|
216
219
|
rotateRight: (numBits: number | Long) => Long;
|
|
217
220
|
rotr: (numBits: number | Long) => Long;
|
|
218
|
-
subtract: (subtrahend:
|
|
219
|
-
sub: (subtrahend:
|
|
221
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
222
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
223
|
+
toBigInt: () => bigint;
|
|
220
224
|
toInt: () => number;
|
|
221
225
|
toNumber: () => number;
|
|
222
226
|
toBytes: (le?: boolean) => number[];
|
|
@@ -225,7 +229,7 @@ export declare const BtrfsSubvolInfoResponse: {
|
|
|
225
229
|
toSigned: () => Long;
|
|
226
230
|
toString: (radix?: number) => string;
|
|
227
231
|
toUnsigned: () => Long;
|
|
228
|
-
xor: (other:
|
|
232
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
229
233
|
} & { [K_2 in Exclude<keyof I_1["gen"], keyof Long>]: never; });
|
|
230
234
|
} & { [K_3 in Exclude<keyof I_1, keyof BtrfsSubvolInfoResponse>]: never; }>(object: I_1): BtrfsSubvolInfoResponse;
|
|
231
235
|
};
|
|
@@ -243,40 +247,41 @@ export declare const BtrfsSubvolFindNewRequest: {
|
|
|
243
247
|
high: number;
|
|
244
248
|
low: number;
|
|
245
249
|
unsigned: boolean;
|
|
246
|
-
add: (addend:
|
|
247
|
-
and: (other:
|
|
248
|
-
compare: (other:
|
|
249
|
-
comp: (other:
|
|
250
|
-
divide: (divisor:
|
|
251
|
-
div: (divisor:
|
|
252
|
-
equals: (other:
|
|
253
|
-
eq: (other:
|
|
250
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
251
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
252
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
253
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
254
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
255
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
256
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
257
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
254
258
|
getHighBits: () => number;
|
|
255
259
|
getHighBitsUnsigned: () => number;
|
|
256
260
|
getLowBits: () => number;
|
|
257
261
|
getLowBitsUnsigned: () => number;
|
|
258
262
|
getNumBitsAbs: () => number;
|
|
259
|
-
greaterThan: (other:
|
|
260
|
-
gt: (other:
|
|
261
|
-
greaterThanOrEqual: (other:
|
|
262
|
-
gte: (other:
|
|
263
|
-
ge: (other:
|
|
263
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
264
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
265
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
266
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
267
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
264
268
|
isEven: () => boolean;
|
|
265
269
|
isNegative: () => boolean;
|
|
266
270
|
isOdd: () => boolean;
|
|
267
271
|
isPositive: () => boolean;
|
|
272
|
+
isSafeInteger: () => boolean;
|
|
268
273
|
isZero: () => boolean;
|
|
269
274
|
eqz: () => boolean;
|
|
270
|
-
lessThan: (other:
|
|
271
|
-
lt: (other:
|
|
272
|
-
lessThanOrEqual: (other:
|
|
273
|
-
lte: (other:
|
|
274
|
-
le: (other:
|
|
275
|
-
modulo: (other:
|
|
276
|
-
mod: (other:
|
|
277
|
-
rem: (other:
|
|
278
|
-
multiply: (multiplier:
|
|
279
|
-
mul: (multiplier:
|
|
275
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
276
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
277
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
278
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
279
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
280
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
281
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
282
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
283
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
284
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
280
285
|
negate: () => Long;
|
|
281
286
|
neg: () => Long;
|
|
282
287
|
not: () => Long;
|
|
@@ -284,10 +289,10 @@ export declare const BtrfsSubvolFindNewRequest: {
|
|
|
284
289
|
clz: () => number;
|
|
285
290
|
countTrailingZeros: () => number;
|
|
286
291
|
ctz: () => number;
|
|
287
|
-
notEquals: (other:
|
|
288
|
-
neq: (other:
|
|
289
|
-
ne: (other:
|
|
290
|
-
or: (other:
|
|
292
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
293
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
294
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
295
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
291
296
|
shiftLeft: (numBits: number | Long) => Long;
|
|
292
297
|
shl: (numBits: number | Long) => Long;
|
|
293
298
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -299,8 +304,9 @@ export declare const BtrfsSubvolFindNewRequest: {
|
|
|
299
304
|
rotl: (numBits: number | Long) => Long;
|
|
300
305
|
rotateRight: (numBits: number | Long) => Long;
|
|
301
306
|
rotr: (numBits: number | Long) => Long;
|
|
302
|
-
subtract: (subtrahend:
|
|
303
|
-
sub: (subtrahend:
|
|
307
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
308
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
309
|
+
toBigInt: () => bigint;
|
|
304
310
|
toInt: () => number;
|
|
305
311
|
toNumber: () => number;
|
|
306
312
|
toBytes: (le?: boolean) => number[];
|
|
@@ -309,7 +315,7 @@ export declare const BtrfsSubvolFindNewRequest: {
|
|
|
309
315
|
toSigned: () => Long;
|
|
310
316
|
toString: (radix?: number) => string;
|
|
311
317
|
toUnsigned: () => Long;
|
|
312
|
-
xor: (other:
|
|
318
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
313
319
|
} & { [K in Exclude<keyof I["gen"], keyof Long>]: never; });
|
|
314
320
|
} & { [K_1 in Exclude<keyof I, keyof BtrfsSubvolFindNewRequest>]: never; }>(base?: I): BtrfsSubvolFindNewRequest;
|
|
315
321
|
fromPartial<I_1 extends {
|
|
@@ -321,40 +327,41 @@ export declare const BtrfsSubvolFindNewRequest: {
|
|
|
321
327
|
high: number;
|
|
322
328
|
low: number;
|
|
323
329
|
unsigned: boolean;
|
|
324
|
-
add: (addend:
|
|
325
|
-
and: (other:
|
|
326
|
-
compare: (other:
|
|
327
|
-
comp: (other:
|
|
328
|
-
divide: (divisor:
|
|
329
|
-
div: (divisor:
|
|
330
|
-
equals: (other:
|
|
331
|
-
eq: (other:
|
|
330
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
331
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
332
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
333
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
334
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
335
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
336
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
337
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
332
338
|
getHighBits: () => number;
|
|
333
339
|
getHighBitsUnsigned: () => number;
|
|
334
340
|
getLowBits: () => number;
|
|
335
341
|
getLowBitsUnsigned: () => number;
|
|
336
342
|
getNumBitsAbs: () => number;
|
|
337
|
-
greaterThan: (other:
|
|
338
|
-
gt: (other:
|
|
339
|
-
greaterThanOrEqual: (other:
|
|
340
|
-
gte: (other:
|
|
341
|
-
ge: (other:
|
|
343
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
344
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
345
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
346
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
347
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
342
348
|
isEven: () => boolean;
|
|
343
349
|
isNegative: () => boolean;
|
|
344
350
|
isOdd: () => boolean;
|
|
345
351
|
isPositive: () => boolean;
|
|
352
|
+
isSafeInteger: () => boolean;
|
|
346
353
|
isZero: () => boolean;
|
|
347
354
|
eqz: () => boolean;
|
|
348
|
-
lessThan: (other:
|
|
349
|
-
lt: (other:
|
|
350
|
-
lessThanOrEqual: (other:
|
|
351
|
-
lte: (other:
|
|
352
|
-
le: (other:
|
|
353
|
-
modulo: (other:
|
|
354
|
-
mod: (other:
|
|
355
|
-
rem: (other:
|
|
356
|
-
multiply: (multiplier:
|
|
357
|
-
mul: (multiplier:
|
|
355
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
356
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
357
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
358
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
359
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
360
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
361
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
362
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
363
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
364
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
358
365
|
negate: () => Long;
|
|
359
366
|
neg: () => Long;
|
|
360
367
|
not: () => Long;
|
|
@@ -362,10 +369,10 @@ export declare const BtrfsSubvolFindNewRequest: {
|
|
|
362
369
|
clz: () => number;
|
|
363
370
|
countTrailingZeros: () => number;
|
|
364
371
|
ctz: () => number;
|
|
365
|
-
notEquals: (other:
|
|
366
|
-
neq: (other:
|
|
367
|
-
ne: (other:
|
|
368
|
-
or: (other:
|
|
372
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
373
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
374
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
375
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
369
376
|
shiftLeft: (numBits: number | Long) => Long;
|
|
370
377
|
shl: (numBits: number | Long) => Long;
|
|
371
378
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -377,8 +384,9 @@ export declare const BtrfsSubvolFindNewRequest: {
|
|
|
377
384
|
rotl: (numBits: number | Long) => Long;
|
|
378
385
|
rotateRight: (numBits: number | Long) => Long;
|
|
379
386
|
rotr: (numBits: number | Long) => Long;
|
|
380
|
-
subtract: (subtrahend:
|
|
381
|
-
sub: (subtrahend:
|
|
387
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
388
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
389
|
+
toBigInt: () => bigint;
|
|
382
390
|
toInt: () => number;
|
|
383
391
|
toNumber: () => number;
|
|
384
392
|
toBytes: (le?: boolean) => number[];
|
|
@@ -387,7 +395,7 @@ export declare const BtrfsSubvolFindNewRequest: {
|
|
|
387
395
|
toSigned: () => Long;
|
|
388
396
|
toString: (radix?: number) => string;
|
|
389
397
|
toUnsigned: () => Long;
|
|
390
|
-
xor: (other:
|
|
398
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
391
399
|
} & { [K_2 in Exclude<keyof I_1["gen"], keyof Long>]: never; });
|
|
392
400
|
} & { [K_3 in Exclude<keyof I_1, keyof BtrfsSubvolFindNewRequest>]: never; }>(object: I_1): BtrfsSubvolFindNewRequest;
|
|
393
401
|
};
|
|
@@ -405,40 +413,41 @@ export declare const BtrfsSubvolFindNewResponse: {
|
|
|
405
413
|
high: number;
|
|
406
414
|
low: number;
|
|
407
415
|
unsigned: boolean;
|
|
408
|
-
add: (addend:
|
|
409
|
-
and: (other:
|
|
410
|
-
compare: (other:
|
|
411
|
-
comp: (other:
|
|
412
|
-
divide: (divisor:
|
|
413
|
-
div: (divisor:
|
|
414
|
-
equals: (other:
|
|
415
|
-
eq: (other:
|
|
416
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
417
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
418
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
419
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
420
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
421
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
422
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
423
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
416
424
|
getHighBits: () => number;
|
|
417
425
|
getHighBitsUnsigned: () => number;
|
|
418
426
|
getLowBits: () => number;
|
|
419
427
|
getLowBitsUnsigned: () => number;
|
|
420
428
|
getNumBitsAbs: () => number;
|
|
421
|
-
greaterThan: (other:
|
|
422
|
-
gt: (other:
|
|
423
|
-
greaterThanOrEqual: (other:
|
|
424
|
-
gte: (other:
|
|
425
|
-
ge: (other:
|
|
429
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
430
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
431
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
432
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
433
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
426
434
|
isEven: () => boolean;
|
|
427
435
|
isNegative: () => boolean;
|
|
428
436
|
isOdd: () => boolean;
|
|
429
437
|
isPositive: () => boolean;
|
|
438
|
+
isSafeInteger: () => boolean;
|
|
430
439
|
isZero: () => boolean;
|
|
431
440
|
eqz: () => boolean;
|
|
432
|
-
lessThan: (other:
|
|
433
|
-
lt: (other:
|
|
434
|
-
lessThanOrEqual: (other:
|
|
435
|
-
lte: (other:
|
|
436
|
-
le: (other:
|
|
437
|
-
modulo: (other:
|
|
438
|
-
mod: (other:
|
|
439
|
-
rem: (other:
|
|
440
|
-
multiply: (multiplier:
|
|
441
|
-
mul: (multiplier:
|
|
441
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
442
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
443
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
444
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
445
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
446
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
447
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
448
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
449
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
450
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
442
451
|
negate: () => Long;
|
|
443
452
|
neg: () => Long;
|
|
444
453
|
not: () => Long;
|
|
@@ -446,10 +455,10 @@ export declare const BtrfsSubvolFindNewResponse: {
|
|
|
446
455
|
clz: () => number;
|
|
447
456
|
countTrailingZeros: () => number;
|
|
448
457
|
ctz: () => number;
|
|
449
|
-
notEquals: (other:
|
|
450
|
-
neq: (other:
|
|
451
|
-
ne: (other:
|
|
452
|
-
or: (other:
|
|
458
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
459
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
460
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
461
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
453
462
|
shiftLeft: (numBits: number | Long) => Long;
|
|
454
463
|
shl: (numBits: number | Long) => Long;
|
|
455
464
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -461,8 +470,9 @@ export declare const BtrfsSubvolFindNewResponse: {
|
|
|
461
470
|
rotl: (numBits: number | Long) => Long;
|
|
462
471
|
rotateRight: (numBits: number | Long) => Long;
|
|
463
472
|
rotr: (numBits: number | Long) => Long;
|
|
464
|
-
subtract: (subtrahend:
|
|
465
|
-
sub: (subtrahend:
|
|
473
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
474
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
475
|
+
toBigInt: () => bigint;
|
|
466
476
|
toInt: () => number;
|
|
467
477
|
toNumber: () => number;
|
|
468
478
|
toBytes: (le?: boolean) => number[];
|
|
@@ -471,7 +481,7 @@ export declare const BtrfsSubvolFindNewResponse: {
|
|
|
471
481
|
toSigned: () => Long;
|
|
472
482
|
toString: (radix?: number) => string;
|
|
473
483
|
toUnsigned: () => Long;
|
|
474
|
-
xor: (other:
|
|
484
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
475
485
|
} & { [K_1 in Exclude<keyof I["gen"], keyof Long>]: never; });
|
|
476
486
|
} & { [K_2 in Exclude<keyof I, keyof BtrfsSubvolFindNewResponse>]: never; }>(base?: I): BtrfsSubvolFindNewResponse;
|
|
477
487
|
fromPartial<I_1 extends {
|
|
@@ -483,40 +493,41 @@ export declare const BtrfsSubvolFindNewResponse: {
|
|
|
483
493
|
high: number;
|
|
484
494
|
low: number;
|
|
485
495
|
unsigned: boolean;
|
|
486
|
-
add: (addend:
|
|
487
|
-
and: (other:
|
|
488
|
-
compare: (other:
|
|
489
|
-
comp: (other:
|
|
490
|
-
divide: (divisor:
|
|
491
|
-
div: (divisor:
|
|
492
|
-
equals: (other:
|
|
493
|
-
eq: (other:
|
|
496
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
497
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
498
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
499
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
500
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
501
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
502
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
503
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
494
504
|
getHighBits: () => number;
|
|
495
505
|
getHighBitsUnsigned: () => number;
|
|
496
506
|
getLowBits: () => number;
|
|
497
507
|
getLowBitsUnsigned: () => number;
|
|
498
508
|
getNumBitsAbs: () => number;
|
|
499
|
-
greaterThan: (other:
|
|
500
|
-
gt: (other:
|
|
501
|
-
greaterThanOrEqual: (other:
|
|
502
|
-
gte: (other:
|
|
503
|
-
ge: (other:
|
|
509
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
510
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
511
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
512
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
513
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
504
514
|
isEven: () => boolean;
|
|
505
515
|
isNegative: () => boolean;
|
|
506
516
|
isOdd: () => boolean;
|
|
507
517
|
isPositive: () => boolean;
|
|
518
|
+
isSafeInteger: () => boolean;
|
|
508
519
|
isZero: () => boolean;
|
|
509
520
|
eqz: () => boolean;
|
|
510
|
-
lessThan: (other:
|
|
511
|
-
lt: (other:
|
|
512
|
-
lessThanOrEqual: (other:
|
|
513
|
-
lte: (other:
|
|
514
|
-
le: (other:
|
|
515
|
-
modulo: (other:
|
|
516
|
-
mod: (other:
|
|
517
|
-
rem: (other:
|
|
518
|
-
multiply: (multiplier:
|
|
519
|
-
mul: (multiplier:
|
|
521
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
522
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
523
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
524
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
525
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
526
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
527
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
528
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
529
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
530
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
520
531
|
negate: () => Long;
|
|
521
532
|
neg: () => Long;
|
|
522
533
|
not: () => Long;
|
|
@@ -524,10 +535,10 @@ export declare const BtrfsSubvolFindNewResponse: {
|
|
|
524
535
|
clz: () => number;
|
|
525
536
|
countTrailingZeros: () => number;
|
|
526
537
|
ctz: () => number;
|
|
527
|
-
notEquals: (other:
|
|
528
|
-
neq: (other:
|
|
529
|
-
ne: (other:
|
|
530
|
-
or: (other:
|
|
538
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
539
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
540
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
541
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
531
542
|
shiftLeft: (numBits: number | Long) => Long;
|
|
532
543
|
shl: (numBits: number | Long) => Long;
|
|
533
544
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -539,8 +550,9 @@ export declare const BtrfsSubvolFindNewResponse: {
|
|
|
539
550
|
rotl: (numBits: number | Long) => Long;
|
|
540
551
|
rotateRight: (numBits: number | Long) => Long;
|
|
541
552
|
rotr: (numBits: number | Long) => Long;
|
|
542
|
-
subtract: (subtrahend:
|
|
543
|
-
sub: (subtrahend:
|
|
553
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
554
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
555
|
+
toBigInt: () => bigint;
|
|
544
556
|
toInt: () => number;
|
|
545
557
|
toNumber: () => number;
|
|
546
558
|
toBytes: (le?: boolean) => number[];
|
|
@@ -549,7 +561,7 @@ export declare const BtrfsSubvolFindNewResponse: {
|
|
|
549
561
|
toSigned: () => Long;
|
|
550
562
|
toString: (radix?: number) => string;
|
|
551
563
|
toUnsigned: () => Long;
|
|
552
|
-
xor: (other:
|
|
564
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
553
565
|
} & { [K_4 in Exclude<keyof I_1["gen"], keyof Long>]: never; });
|
|
554
566
|
} & { [K_5 in Exclude<keyof I_1, keyof BtrfsSubvolFindNewResponse>]: never; }>(object: I_1): BtrfsSubvolFindNewResponse;
|
|
555
567
|
};
|