Files
wireframev5_frontend/src/types.ts
T

12 lines
202 B
TypeScript
Raw Normal View History

2025-01-29 23:49:27 +01:00
export interface Character {
id: string;
name: string;
image: string;
}
export interface TransformedImage {
original: string;
transformed: string;
character: Character;
timestamp: Date;
}