Skip to main content
Module

x/alosaur/src/injection/types/dictionary.ts

Alosaur - Deno web framework with many decorators
Very Popular
Go to Latest
File
type Dictionary<T> = { [key: string]: T;};
export default Dictionary;