Skip to main content
Module

x/alosaur/src/types/provider-declaration.ts

Alosaur - Deno web framework with many decorators
Very Popular
Go to Latest
File
import { InjectionToken, Provider } from "../injection/index.ts";
export type ProviderDeclaration<T = any> = { token: InjectionToken<T>;} & Provider;