Add gen files
Some checks failed
Lint / lint (push) Failing after 38s

This commit is contained in:
Julien Valverdé
2026-01-02 03:01:07 +01:00
parent 2471299089
commit 99007ec462
7 changed files with 33 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
declare module "godot" {
interface ResourceTypes {
"res://biome.json": JSON;
}
}

View File

@@ -0,0 +1,5 @@
declare module "godot" {
interface ResourceTypes {
"res://icon.svg": CompressedTexture2D;
}
}

View File

@@ -0,0 +1,5 @@
declare module "godot" {
interface SceneNodes {
"src/TestUi1.tscn": {};
}
}

View File

@@ -0,0 +1,6 @@
import TestUi1 from "../../../src/TestUi1";
declare module "godot" {
interface ResourceTypes {
"res://src/TestUi1.tscn": PackedScene<TestUi1>;
}
}

View File

@@ -0,0 +1,5 @@
declare module "godot" {
interface SceneNodes {
"src/TestUi2.tscn": {};
}
}

View File

@@ -0,0 +1,6 @@
import TestUi2 from "../../../src/TestUi2";
declare module "godot" {
interface ResourceTypes {
"res://src/TestUi2.tscn": PackedScene<TestUi2>;
}
}