Fix
Some checks failed
Lint / lint (push) Failing after 9s

This commit is contained in:
Julien Valverdé
2025-12-30 13:20:31 +01:00
parent 5dd051ce71
commit 04eb98bc3f

View File

@@ -9,7 +9,7 @@ export type NodeClass = {
}[keyof typeof Godot] }[keyof typeof Godot]
export type GodotIntrinsicElements = { export type GodotIntrinsicElements = {
[K in NodeClass as PascalToCamel<K>]: PropsFromInstance<InstanceType<(typeof Godot)[K]>> [K in NodeClass as PascalToCamel<K>]: React.JSX.IntrinsicAttributes & PropsFromInstance<InstanceType<(typeof Godot)[K]>>
} & { } & {
element: { element: {
class: new (...args: any[]) => Godot.Node class: new (...args: any[]) => Godot.Node