UNPKG

@nestjs/core

Version:

Nest - modern, fast, powerful node.js web framework (@core)

12 lines (11 loc) 551 B
import { InstanceWrapper } from './instance-wrapper'; /** * Returns the instances which are transient * @param instances The instances which should be checked whether they are transcient */ export declare function getTransientInstances(instances: [string, InstanceWrapper][]): InstanceWrapper[]; /** * Returns the instances which are not transient * @param instances The instances which should be checked whether they are transcient */ export declare function getNonTransientInstances(instances: [string, InstanceWrapper][]): InstanceWrapper[];