UNPKG

rambdax

Version:

Extended version of Rambda - a lightweight, faster alternative to Ramda

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