Skip to main content
Module

x/alosaur/src/injection/factories/factory-function.ts

Alosaur - Deno web framework with many decorators
Very Popular
Go to Latest
File
import DependencyContainer from "../types/dependency-container.ts";
type FactoryFunction<T> = (dependencyContainer: DependencyContainer) => T;
export default FactoryFunction;