UNPKG

@glandjs/core

Version:

Glands is a web framework for Node.js (@core)

9 lines (8 loc) 275 B
import type { Constructor } from '@medishn/toolkit'; export declare class InstanceWrapper<T = any> { readonly token: Constructor; private readonly instance?; constructor(token: Constructor, instance?: T | undefined); get id(): string; getInstance(): T; }