/** Describes compatible type formats
 * * `b`: **`boolean`**
 * * `s`: **`string`**
 * * `n`: **`number`**
 */
export type Formats = 'b' | 'n' | 's'
