15815213711
2024-08-26 67b8b6731811983447e053d4396b3708c14dfe3c
1
2
3
import { interfaces } from "../inversify";
export declare const tryGetFromScope: <T>(requestScope: interfaces.RequestScope, binding: interfaces.Binding<T>) => T | Promise<T> | null;
export declare const saveToScope: <T>(requestScope: interfaces.RequestScope, binding: interfaces.Binding<T>, result: T | Promise<T>) => void;