libp2p-ts/types/memdown/index.d.ts

14 lines
429 B
TypeScript
Raw Normal View History

2018-06-22 13:07:15 +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 13:07:15 +02:00
2018-06-24 10:20:23 +02:00
declare module 'memdown' {
2018-08-23 18:10:18 +02:00
const memdown: () => AbstractLevelDOWN;
2018-06-22 13:07:15 +02:00
2018-06-22 16:38:26 +02:00
export default memdown;
2018-06-22 13:07:15 +02:00
}