diff --git a/apps/ai-game-creator-shell/src/features/ui-editor/types/FillMethod.ts b/apps/ai-game-creator-shell/src/features/ui-editor/types/FillMethod.ts index 1651dbbee..2dd0b1767 100644 --- a/apps/ai-game-creator-shell/src/features/ui-editor/types/FillMethod.ts +++ b/apps/ai-game-creator-shell/src/features/ui-editor/types/FillMethod.ts @@ -1,8 +1,13 @@ // 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 { Radial180Origin } from "./Radial180Origin"; -import type { Radial360Origin } from "./Radial360Origin"; -import type { Radial90Origin } from "./Radial90Origin"; -import type { VerticalFillOrigin } from "./VerticalFillOrigin"; +import type { HorizontalFillOrigin } from './HorizontalFillOrigin'; +import type { Radial90Origin } from './Radial90Origin'; +import type { Radial180Origin } from './Radial180Origin'; +import type { Radial360Origin } from './Radial360Origin'; +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, } }; +export type FillMethod = + | { Horizontal: HorizontalFillOrigin } + | { Vertical: VerticalFillOrigin } + | { Radial90: { origin: Radial90Origin; clockwise: boolean } } + | { Radial180: { origin: Radial180Origin; clockwise: boolean } } + | { Radial360: { origin: Radial360Origin; clockwise: boolean } }; diff --git a/apps/ai-game-creator-shell/tests/uiDesignSuggestions.test.ts b/apps/ai-game-creator-shell/tests/uiDesignSuggestions.test.ts index cd1c2a386..4f16f2ec4 100644 --- a/apps/ai-game-creator-shell/tests/uiDesignSuggestions.test.ts +++ b/apps/ai-game-creator-shell/tests/uiDesignSuggestions.test.ts @@ -1,7 +1,7 @@ import { describe, expect, it } from 'vitest'; -import { applyUiDesignSuggestions } from '../src/features/ui-editor/uiDesignSuggestions'; import type { State } from '../src/features/ui-editor/types/State'; +import { applyUiDesignSuggestions } from '../src/features/ui-editor/uiDesignSuggestions'; function state(): State { return {