10 lines
No EOL
159 B
TypeScript
10 lines
No EOL
159 B
TypeScript
import type {IAbstract} from './IAbstract'
|
|
|
|
export interface IFile extends IAbstract {
|
|
id: number
|
|
mime: string
|
|
name: string
|
|
size: number
|
|
|
|
created: Date
|
|
}
|