10 lines
221 B
TypeScript
10 lines
221 B
TypeScript
export interface FileData {
|
|
id: number;
|
|
text: string;
|
|
/* public id: number;
|
|
public text: string; */
|
|
/* constructor(id: number, text: string) {
|
|
this.id = id;
|
|
this.text = text;
|
|
} */
|
|
} |