UNPKG

@try-at-software/input-elements

Version:

A package providing different input elements that are extensible and easily configurable for your custom needs.

7 lines (6 loc) 150 B
export declare type Constructor<T> = { new (): T; }; export declare type ParametrizedConstructor<TArgs, T> = { new (args: TArgs): T; };