bug: quaternion?

This commit is contained in:
2025-06-07 22:51:11 +09:00
parent a143e69796
commit 6e09946bf1
2 changed files with 4 additions and 1 deletions

3
types/index.d.ts vendored
View File

@@ -1,5 +1,8 @@
/** @noSelfInFile */
export {};
/** @noSelf */
declare global {
type ShipVec3 = { x: number; y: number; z: number };
type ShipQuaternion = { x: number; y: number; z: number; w: number };