UNPKG

angular-file-picker-fixed

Version:
10 lines (9 loc) 204 B
import { ReadMode } from './read-mode.enum'; export interface PickedFile { lastModifiedDate: Date; name: string; size: number; type: string; readMode: ReadMode; content: string; }