UNPKG

@tsclean/core

Version:

Plugin for API Rest Full development, based on Clean Architecture, IoC and Dependency Injection.

18 lines 643 B
import { InjectableType } from '../types'; export declare class MetadataScanner { private readonly cachedScannedPrototypes; /** * @deprecated * @see {@link getAllMethodNames} * @see getAllMethodNames */ scanFromPrototype<T extends InjectableType, R = any>(instance: T, prototype: object, callback: (name: string) => R): R[]; /** * @deprecated * @see {@link getAllMethodNames} * @see getAllMethodNames */ getAllFilteredMethodNames(prototype: object): IterableIterator<string>; getAllMethodNames(prototype: object | null): string[]; } //# sourceMappingURL=metadata-scanner.d.ts.map