You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@types/memdown

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/memdown

TypeScript definitions for memdown

ts4.2
Source
npmnpm
Version
3.0.1
Version published
Weekly downloads
3.2K
120.12%
Maintainers
1
Weekly downloads
 
Created
Source

Installation

npm install --save @types/memdown

Summary

This package contains type definitions for memdown (https://github.com/Level/memdown).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/memdown.

index.d.ts

// Type definitions for memdown 3.0
// Project: https://github.com/Level/memdown
// Definitions by: Meirion Hughes <https://github.com/MeirionHughes>
//                 Daniel Byrne <https://github.com/danwbyrne>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3

import { AbstractLevelDOWN } from 'abstract-leveldown';

export interface MemDown<K, V> extends AbstractLevelDOWN<K, V> {}

export interface MemDownConstructor {
  // eslint-disable-next-line no-unnecessary-generics
  new <K = any, V = any>(): MemDown<K, V>;
  // eslint-disable-next-line no-unnecessary-generics
  <K = any, V = any>(): MemDown<K, V>;
}

export const MemDown: MemDownConstructor;
export default MemDown;

Additional Details

  • Last updated: Fri, 30 Dec 2022 23:03:41 GMT
  • Dependencies: @types/abstract-leveldown
  • Global values: none

Credits

These definitions were written by Meirion Hughes, and Daniel Byrne.

FAQs

Package last updated on 30 Dec 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts