@@ -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. */
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
declare module "godot" {
|
||||
interface ResourceTypes {
|
||||
"res://biome.json": JSON;
|
||||
}
|
||||
}
|
||||
5
packages/react-godot-renderer/gen/godot/icon.svg.gen.ts
Normal file
5
packages/react-godot-renderer/gen/godot/icon.svg.gen.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
declare module "godot" {
|
||||
interface ResourceTypes {
|
||||
"res://icon.svg": CompressedTexture2D;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
declare module "godot" {
|
||||
interface SceneNodes {
|
||||
"src/TestUi1.tscn": {};
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
import TestUi1 from "../../../src/TestUi1";
|
||||
declare module "godot" {
|
||||
interface ResourceTypes {
|
||||
"res://src/TestUi1.tscn": PackedScene<TestUi1>;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
declare module "godot" {
|
||||
interface SceneNodes {
|
||||
"src/TestUi2.tscn": {};
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
import TestUi2 from "../../../src/TestUi2";
|
||||
declare module "godot" {
|
||||
interface ResourceTypes {
|
||||
"res://src/TestUi2.tscn": PackedScene<TestUi2>;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user