src/app/file.ts
Properties |
filename |
filename:
|
Type : string
|
language |
language:
|
Type : string
|
path |
path:
|
Type : string
|
text |
text:
|
Type : string
|
username |
username:
|
Type : string
|
export interface File {
username: string;
filename: string;
language: string;
text: string;
path: string;
}