Fix the type of IntDistribution.step

This commit is contained in:
porink0424
2024-04-12 18:45:30 +09:00
parent 76622bba3e
commit 8d899e2bfd
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -5460,9 +5460,9 @@
}
},
"node_modules/caniuse-lite": {
"version": "1.0.30001608",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001608.tgz",
"integrity": "sha512-cjUJTQkk9fQlJR2s4HMuPMvTiRggl0rAVMtthQuyOlDWuqHXqN8azLq+pi8B2TjwKJ32diHjUqRIKeFX4z1FoA==",
"version": "1.0.30001609",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001609.tgz",
"integrity": "sha512-JFPQs34lHKx1B5t1EpQpWH4c+29zIyn/haGsbpfq3suuV9v56enjFt23zqijxGTMwy1p/4H2tjnQMY+p1WoAyA==",
"dev": true,
"funding": [
{
+1 -1
View File
@@ -14,7 +14,7 @@ export type IntDistribution = {
type: "IntDistribution"
low: number
high: number
step: number | null
step: number
log: boolean
}