filesInputStore.ts 244 B

12345678910
  1. /**
  2. * Class used to help managing file picking and drag'n'drop
  3. * File Storage
  4. */
  5. export class FilesInputStore {
  6. /**
  7. * List of files ready to be loaded
  8. */
  9. public static FilesToLoad: { [key: string]: File } = {};
  10. }