-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support minItems and maxItems schema properties #14
Comments
Тут, кажется, во втором случае некорректный пример. Должно быть А если есть одновременно и мин и макс, тогда можно написать: // min - 2
// max - 3
[string, string, string | undefined] |
Хотя нет, даже так некорректно, потому что может получиться [] | [string] | [string, string] | [string, string, ...] ... |
Ух, тогда это может в дико огромную запись превратиться. |
Слепил такое - Playground // minItems - 1
const items: [string, ...string[]]
// maxItems - 3
// const items: [] | [string] | [string, string] | [string, string, string]
const items: Tuple<string, RangeOf<3>>
// minItems - 1
// maxItems - 3
// const items: [string] | [string, string] | [string, string, string]
const items: Tuple<string, RangeOf2<1,3>> Из проблем - нужен typescript выше версии |
Generate tuple from
minItems
andmaxItems
:minItems
:maxItems
:The text was updated successfully, but these errors were encountered: