Dolls (UI WIP)
This commit is contained in:
4
src/types/bindings/CreateDollDto.ts
Normal file
4
src/types/bindings/CreateDollDto.ts
Normal 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, };
|
||||
3
src/types/bindings/DollColorSchemeDto.ts
Normal file
3
src/types/bindings/DollColorSchemeDto.ts
Normal 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, };
|
||||
4
src/types/bindings/DollConfigurationDto.ts
Normal file
4
src/types/bindings/DollConfigurationDto.ts
Normal 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, };
|
||||
4
src/types/bindings/DollDto.ts
Normal file
4
src/types/bindings/DollDto.ts
Normal 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, };
|
||||
4
src/types/bindings/UpdateDollDto.ts
Normal file
4
src/types/bindings/UpdateDollDto.ts
Normal 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, };
|
||||
Reference in New Issue
Block a user