Dolls (UI WIP)

This commit is contained in:
2025-12-20 01:21:05 +08:00
parent ab2beaffa4
commit 1c7b518e73
9 changed files with 535 additions and 4 deletions

View File

@@ -0,0 +1,4 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { DollConfigurationDto } from "./DollConfigurationDto";
export type CreateDollDto = { name: string, configuration: DollConfigurationDto | null, };

View File

@@ -0,0 +1,3 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
export type DollColorSchemeDto = { outline: string, body: string, };

View File

@@ -0,0 +1,4 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { DollColorSchemeDto } from "./DollColorSchemeDto";
export type DollConfigurationDto = { colorScheme: DollColorSchemeDto, };

View File

@@ -0,0 +1,4 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { DollConfigurationDto } from "./DollConfigurationDto";
export type DollDto = { id: string, name: string, configuration: DollConfigurationDto, createdAt: string, updatedAt: string, };

View File

@@ -0,0 +1,4 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { DollConfigurationDto } from "./DollConfigurationDto";
export type UpdateDollDto = { name: string | null, configuration: DollConfigurationDto | null, };