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

@@ -32,7 +32,7 @@
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
"typeRoots": [ /* Specify multiple folders that act like './node_modules/@types'. */
"./node_modules/@types","./typings"
"./node_modules/@types", "./typings"
],
// "types": [], /* Specify type package names to be included without being referenced in a source file. */
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */

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>;
}
}