修复 Web 导入排序检查
Project CI / AI game creator shell Rust shard 1/4 (push) Has been cancelled
Project CI / AI game creator shell Rust shard 3/4 (push) Has been cancelled
Project CI / AI game creator shell web tests (push) Has been cancelled
Project CI / AI game creator shell Rust shard 2/4 (push) Has been cancelled
Project CI / AI game creator shell Rust shard 4/4 (push) Has been cancelled
Project CI / AI game creator shell Rust smoke (push) Has been cancelled
Project CI / AI game creator shell Rust crates (push) Has been cancelled
Project CI / Backend tests (push) Has been cancelled
Project CI / Native shell tests (push) Has been cancelled
Project CI / Frontend tests (push) Has been cancelled
Project CI / Repository checks (push) Has been cancelled

整理生成类型与示例文件的导入顺序
This commit is contained in:
2026-09-16 01:26:18 +08:00
parent 69b3b016b5
commit 37f1e8a67b
2 changed files with 6 additions and 4 deletions
@@ -1,8 +1,8 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { HorizontalFillOrigin } from "./HorizontalFillOrigin";
import type { Radial90Origin } from "./Radial90Origin";
import type { Radial180Origin } from "./Radial180Origin";
import type { Radial360Origin } from "./Radial360Origin";
import type { Radial90Origin } from "./Radial90Origin";
import type { VerticalFillOrigin } from "./VerticalFillOrigin";
export type FillMethod = { "Horizontal": HorizontalFillOrigin } | { "Vertical": VerticalFillOrigin } | { "Radial90": { origin: Radial90Origin, clockwise: boolean, } } | { "Radial180": { origin: Radial180Origin, clockwise: boolean, } } | { "Radial360": { origin: Radial360Origin, clockwise: boolean, } };
+5 -3
View File
@@ -1,4 +1,6 @@
import { zebra } from './zebra';
import { alpha } from './alpha';
const staged={value:1}
void zebra; void alpha; void staged;
import { zebra } from './zebra';
const staged = { value: 1 };
void zebra;
void alpha;
void staged;