// 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 declare module 'memdown' { import { AbstractLevelDown } from 'abstract-leveldown'; const memdown: () => AbstractLevelDown; export default memdown; }