radames's picture
first
0e2b5bb unverified
raw
history blame contribute delete
No virus
264 Bytes
import type { Color } from 'd3-color';
export interface ColorsImage {
colors: Color[];
imgURL: string;
}
export interface ColorsPrompt {
prompt: string;
images: ColorsImage[];
}
export interface LoadingState {
loadingMessage: string;
isLoading: boolean;
}