UNPKG

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