UNPKG

crnc

Version:

currency conversion and functionality for the web

3 lines (2 loc) 193 B
export type Constructor<T extends {} = {}> = new (...args: any[]) => T; export type Mixin<C extends Constructor, T extends {}> = new (...args: ConstructorParameters<C>) => InstanceType<C> & T;