We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
RocksDB
RocksDBP
1 parent a06ccdf commit cb25e1fCopy full SHA for cb25e1f
src/rocksdb/index.ts
@@ -1,3 +1,5 @@
1
export { default as rocksdb } from './rocksdb';
2
export { default as rocksdbP } from './rocksdbP';
3
+export type { RocksDB } from './rocksdb';
4
+export type { RocksDBP } from './rocksdbP';
5
export * from './types';
src/rocksdb/rocksdb.ts
@@ -274,3 +274,5 @@ interface RocksDB {
274
const rocksdb: RocksDB = nodeGypBuild(path.join(__dirname, '../../'));
275
276
export default rocksdb;
277
+
278
+export type { RocksDB };
src/rocksdb/rocksdbP.ts
@@ -287,3 +287,5 @@ const rocksdbP: RocksDBP = {
287
};
288
289
export default rocksdbP;
290
291
+export type { RocksDBP };
0 commit comments