Temuri
Temuri
Is it possible to include cookies in the request when any request (such as access token renewal) is sent? It should be possible by passing `{ credentials: 'include' }` to...
Solves #202 This pull request adds support of two callbacks on Calendar and DatePicker components. `onDisplayedDateChangeStart` will be fired when transition to new month starts, or new month/year is selected...
Consider the following schema: ```ts const arraySchema = Joi.array().items(Joi.array().items(Joi.number())); ``` This produces type `(number | number[])[]`, while it should produce `number[][]`