UNPKG

rambda

Version:

Lightweight faster alternative to Ramda

7 lines (6 loc) 150 B
/** Describes compatible type formats * * `b`: **`boolean`** * * `n`: **`number`** * * `s`: **`string`** */ export type Formats = 'b' | 'n' | 's'