Skip to main content
Module

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

Alosaur - Deno web framework with many decorators
Very Popular
Go to Latest
File
/** Constructor type */type constructor<T> = { new (...args: any[]): T;};
export default constructor;