@atlaspack/rust 3.2.1-canary.3 → 3.2.1-canary.6

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 CHANGED
@@ -124,6 +124,7 @@ export class Lmdb {
124
124
  constructor(options: LmdbOptions)
125
125
  get(key: string): Promise<Buffer | null | undefined>
126
126
  hasSync(key: string): boolean
127
+ keysSync(skip: number, limit: number): Array<string>
127
128
  getSync(key: string): Buffer | null
128
129
  getManySync(keys: Array<string>): Array<Buffer | undefined | null>
129
130
  putMany(entries: Array<Entry>): Promise<void>
@@ -138,6 +139,7 @@ export class Lmdb {
138
139
  constructor(options: LMDBOptions)
139
140
  get(key: string): Promise<Buffer | null | undefined>
140
141
  hasSync(key: string): boolean
142
+ keysSync(skip: number, limit: number): Array<string>
141
143
  getSync(key: string): Buffer | null
142
144
  getManySync(keys: Array<string>): Array<Buffer | undefined | null>
143
145
  putMany(entries: Array<Entry>): Promise<void>
Binary file
Binary file
package/index.js.flow CHANGED
@@ -327,6 +327,7 @@ declare export function performStringReplacements(
327
327
  declare export class Lmdb {
328
328
  constructor(options: LmdbOptions): Lmdb;
329
329
  get(key: string): Promise<Buffer | null | void>;
330
+ keysSync(skip: number, limit: number): Array<string>;
330
331
  hasSync(key: string): boolean;
331
332
  getSync(key: string): Buffer | null;
332
333
  getManySync(keys: Array<string>): Array<Buffer | void | null>;
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/rust",
3
- "version": "3.2.1-canary.3+2e90c9bd0",
3
+ "version": "3.2.1-canary.6+b5da6b749",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -34,5 +34,5 @@
34
34
  "test": "mocha"
35
35
  },
36
36
  "type": "commonjs",
37
- "gitHead": "2e90c9bd07d7eb52645f9d84ccbb7f82685cbc8c"
37
+ "gitHead": "b5da6b749ddb23cfc212a640df1f07850da8307f"
38
38
  }