| export enum Dynasty { | |
| Tang = 'Tang', | |
| Song = 'Song', | |
| Ming = 'Ming' | |
| } | |
| export interface HanfuOption { | |
| id: Dynasty; | |
| name: string; | |
| description: string; | |
| imagePlaceholder: string; | |
| } | |
| export interface CustomizationOption { | |
| id: string; | |
| label: string; | |
| promptAddon: string; | |
| } | |
| export interface GenerationState { | |
| isLoading: boolean; | |
| error: string | null; | |
| resultImage: string | null; | |
| } | |