2018-08-24 09:43:40 +02:00

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
};
}