Chat_AI / types.ts
muhammad1707's picture
Move master code to main
00e44ef
Raw
History Blame Contribute Delete
199 Bytes
export interface SummaryState {
originalText: string;
summary: string;
isLoading: boolean;
error: string | null;
}
export interface SummaryResponse {
summary: string;
error?: string;
}