* Add lint-fix npm target * Sync eslint+plugins with backend * Add prettier * Ignore no-explicit-any lint rule for now * Silence eslint react warning * Format frontend via prettier * Lint frontend. --------- Co-authored-by: antanst <>
8 lines
212 B
TypeScript
8 lines
212 B
TypeScript
export interface InboxItem {
|
|
id?: number;
|
|
content: string;
|
|
status?: string; // 'added' | 'processed' | 'deleted'
|
|
source?: string; // 'telegram'
|
|
created_at?: string;
|
|
updated_at?: string;
|
|
}
|