UNPKG

inversify

Version:

A powerful and lightweight inversion of control container for JavaScript and Node.js apps powered by TypeScript.

9 lines (8 loc) 233 B
import interfaces from "../interfaces/interfaces"; declare class Metadata implements interfaces.Metadata { key: string; value: any; constructor(key: string, value: any); toString(): string; } export default Metadata;