Run "yarn build:docs"

This commit is contained in:
metonym 2022-07-26 08:02:24 -07:00
commit ef904567cb
3 changed files with 22 additions and 22 deletions

View file

@ -8268,7 +8268,7 @@
"kind": "let",
"description": "Override the item text",
"type": "(min: number, max: number) => string",
"value": "(min, max) => `${min}${max} items`",
"value": "(min, max) => `${min}${max} item${max === 1 ? \"\" : \"s\"}`",
"isFunction": true,
"isFunctionDeclaration": false,
"isRequired": false,
@ -8280,7 +8280,7 @@
"kind": "let",
"description": "Override the item range text",
"type": "(min: number, max: number, total: number) => string",
"value": "(min, max, total) => `${min}${max} of ${total} items`",
"value": "(min, max, total) => `${min}${max} of ${total} item${max === 1 ? \"\" : \"s\"}`",
"isFunction": true,
"isFunctionDeclaration": false,
"isRequired": false,