File size: 199 Bytes
00e44ef
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13

export interface SummaryState {
  originalText: string;
  summary: string;
  isLoading: boolean;
  error: string | null;
}

export interface SummaryResponse {
  summary: string;
  error?: string;
}