2018-06-22 16:38:26 +02:00
|
|
|
// 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
|
|
|
|
|
2018-08-23 18:10:18 +02:00
|
|
|
declare class AbstractLevelDOWN {
|
2018-08-23 18:07:43 +02:00
|
|
|
constructor (location: string);
|
|
|
|
}
|
|
|
|
|
2018-08-23 18:10:18 +02:00
|
|
|
declare module 'abstract-leveldown' {
|
2018-08-24 09:43:40 +02:00
|
|
|
type AbstractLevelDOWN = typeof AbstractLevelDOWN;
|
2018-08-23 18:10:18 +02:00
|
|
|
|
2018-08-23 18:07:43 +02:00
|
|
|
export {
|
|
|
|
AbstractLevelDOWN
|
|
|
|
};
|
2018-06-22 16:38:26 +02:00
|
|
|
}
|