dino-core
Version:
A dependency injection framework for NodeJS applications
8 lines (7 loc) • 335 B
TypeScript
import { AbstractInterceptor, type PropertyKey } from './abstract.interceptors';
export declare class DefaultInterceptor extends AbstractInterceptor {
private static _instance;
intercept(obj: any, prop: PropertyKey): unknown;
isApplicable(_obj: any, _prop: PropertyKey): boolean;
static create(): DefaultInterceptor;
}