@threlte/gltf 1.0.0-next.11 → 1.0.0-next.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/src/utils/parser.js +5 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/src/utils/parser.js
CHANGED
|
@@ -535,7 +535,11 @@ ${
|
|
|
535
535
|
|
|
536
536
|
${options.types && !options.isolated ? 'type $$Props = Props<THREE.Group>' : ''}
|
|
537
537
|
${options.types && !options.isolated ? 'type $$Events = Events<THREE.Group>' : ''}
|
|
538
|
-
${
|
|
538
|
+
${
|
|
539
|
+
options.types && !options.isolated
|
|
540
|
+
? 'type $$Slots = Slots<THREE.Group> & { fallback: {}; error: { error: any } }'
|
|
541
|
+
: ''
|
|
542
|
+
}
|
|
539
543
|
|
|
540
544
|
export const ref = new Group()
|
|
541
545
|
|