14 lines
447 B
TypeScript
Raw Normal View History

2018-06-22 16:38:26 +02:00
// Type definitions for LevelDown 3.0.0
// Project: https://github.com/level/memdown
// Definitions by: Thiago de Arruda <https://github.com/tarruda>
// Jaco Greeff <https://github.com/jacogr>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
2018-06-24 10:46:14 +02:00
/// <reference types="abstract-leveldown"/>
2018-06-22 16:38:26 +02:00
2018-06-24 10:20:23 +02:00
declare module 'leveldown' {
2018-08-23 18:10:18 +02:00
const leveldown: (path: string) => AbstractLevelDOWN;
2018-06-22 16:38:26 +02:00
export default leveldown;
}