digo_big / types.ts
didigo's picture
Add files using upload-large-folder tool
7fab18f verified
raw
history blame contribute delete
400 Bytes
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;
}