UNPKG

flowbite-angular

Version:

<div align="center"> <h1>:construction: flowbite-angular (unreleased) :construction:</h1> <p> <a href="https://flowbite.com"> <img alt="Flowbite - Tailwind CSS components" width="350" src="https://flowbite.s3.amazonaws.com/github/logo-github

9 lines (8 loc) 234 B
/** * Type describing all the combinations possible between two types. */ export type Combination<T extends string | number | symbol, U extends string | number | symbol, TOut> = { [K1 in T]: { [K2 in U]: TOut; }; };