@atlaspack/rust 3.3.2 → 3.3.4
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/index.d.ts +0 -2
- package/index.darwin-arm64.node +0 -0
- package/index.darwin-x64.node +0 -0
- package/index.js.flow +1 -2
- package/index.linux-arm64-gnu.node +0 -0
- package/index.linux-x64-gnu.node +0 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -136,7 +136,6 @@ export class Lmdb {
|
|
|
136
136
|
commitReadTransaction(): void
|
|
137
137
|
startWriteTransaction(): Promise<void>
|
|
138
138
|
commitWriteTransaction(): Promise<void>
|
|
139
|
-
close(): void
|
|
140
139
|
/** Compact the database to the target path */
|
|
141
140
|
compact(targetPath: string): void
|
|
142
141
|
constructor(options: LMDBOptions)
|
|
@@ -153,7 +152,6 @@ export class Lmdb {
|
|
|
153
152
|
commitReadTransaction(): void
|
|
154
153
|
startWriteTransaction(): Promise<void>
|
|
155
154
|
commitWriteTransaction(): Promise<void>
|
|
156
|
-
close(): void
|
|
157
155
|
compact(targetPath: string): void
|
|
158
156
|
}
|
|
159
157
|
export class Hash {
|
package/index.darwin-arm64.node
CHANGED
|
Binary file
|
package/index.darwin-x64.node
CHANGED
|
Binary file
|
package/index.js.flow
CHANGED
|
@@ -339,7 +339,6 @@ declare export class Lmdb {
|
|
|
339
339
|
startWriteTransaction(): Promise<void>;
|
|
340
340
|
commitWriteTransaction(): Promise<void>;
|
|
341
341
|
delete(key: string): Promise<void>;
|
|
342
|
-
close(): void;
|
|
343
342
|
compact(targetPath: string): void;
|
|
344
343
|
}
|
|
345
344
|
|
|
@@ -363,7 +362,7 @@ declare export function runInlineRequiresOptimizerAsync(
|
|
|
363
362
|
|
|
364
363
|
export interface VCSFile {
|
|
365
364
|
path: string;
|
|
366
|
-
hash
|
|
365
|
+
hash?: string | null;
|
|
367
366
|
}
|
|
368
367
|
|
|
369
368
|
export interface YarnState {
|
|
Binary file
|
package/index.linux-x64-gnu.node
CHANGED
|
Binary file
|