summaryrefslogtreecommitdiff
path: root/src/node_modules/inversify/dts/planning/request.d.ts
blob: b01ba8146cac595aa271bb648d17285afce2ba5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { interfaces } from "../interfaces/interfaces";
declare class Request implements interfaces.Request {
    id: number;
    serviceIdentifier: interfaces.ServiceIdentifier<any>;
    parentContext: interfaces.Context;
    parentRequest: interfaces.Request | null;
    bindings: interfaces.Binding<any>[];
    childRequests: interfaces.Request[];
    target: interfaces.Target;
    requestScope: interfaces.RequestScope;
    constructor(serviceIdentifier: interfaces.ServiceIdentifier<any>, parentContext: interfaces.Context, parentRequest: interfaces.Request | null, bindings: (interfaces.Binding<any> | interfaces.Binding<any>[]), target: interfaces.Target);
    addChildRequest(serviceIdentifier: interfaces.ServiceIdentifier<any>, bindings: (interfaces.Binding<any> | interfaces.Binding<any>[]), target: interfaces.Target): interfaces.Request;
}
export { Request };