10 lines
221 B
TypeScript
Raw Normal View History

2025-07-18 09:50:19 +05:30
export interface FileData {
id: number;
text: string;
/* public id: number;
public text: string; */
/* constructor(id: number, text: string) {
this.id = id;
this.text = text;
} */
}