UNPKG

609 BTypeScriptView Raw
1import { InstanceWrapper } from '../instance-wrapper';
2import { InstanceToken } from '../module';
3/**
4 * Returns the instances which are transient
5 * @param instances The instances which should be checked whether they are transcient
6 */
7export declare function getTransientInstances(instances: [InstanceToken, InstanceWrapper][]): InstanceWrapper[];
8/**
9 * Returns the instances which are not transient
10 * @param instances The instances which should be checked whether they are transcient
11 */
12export declare function getNonTransientInstances(instances: [InstanceToken, InstanceWrapper][]): InstanceWrapper[];