Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/lambda_ioc/lambda-ioc/deno/combinators.ts>singleton

Super type safe dependency injection 💉 for TypeScript (inspired by Diddly)
Latest
function singleton
import { singleton } from "https://deno.land/x/lambda_ioc@1.0.0/lambda-ioc/deno/combinators.ts";

Given a dependency factory, returns a new factory that will always resolve the same instance of the dependency.

Type Parameters

TVal
TSyncDependencies extends Record<ContainerKey, unknown>