You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
820 B
7 lines
820 B
import { interfaces } from "../interfaces/interfaces";
|
|
declare function getServiceIdentifierAsString(serviceIdentifier: interfaces.ServiceIdentifier<any>): string;
|
|
declare function listRegisteredBindingsForServiceIdentifier(container: interfaces.Container, serviceIdentifier: string, getBindings: <T>(container: interfaces.Container, serviceIdentifier: interfaces.ServiceIdentifier<T>) => interfaces.Binding<T>[]): string;
|
|
declare function circularDependencyToException(request: interfaces.Request): void;
|
|
declare function listMetadataForTarget(serviceIdentifierString: string, target: interfaces.Target): string;
|
|
declare function getFunctionName(v: any): string;
|
|
export { getFunctionName, getServiceIdentifierAsString, listRegisteredBindingsForServiceIdentifier, listMetadataForTarget, circularDependencyToException };
|
|
|