mirror of
https://github.com/fluencelabs/libp2p-ts
synced 2025-04-01 01:41:06 +00:00
17 lines
421 B
TypeScript
17 lines
421 B
TypeScript
// Type definitions for abstract-leveldown
|
|
// Project: https://github.com/Level/abstract-leveldown
|
|
// Definitions by: Jaco Greeff <https://github.com/jacogr>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare class AbstractLevelDOWN {
|
|
constructor (location: string);
|
|
}
|
|
|
|
declare module 'abstract-leveldown' {
|
|
type AbstractLevelDOWN = typeof AbstractLevelDOWN;
|
|
|
|
export {
|
|
AbstractLevelDOWN
|
|
};
|
|
}
|