filesInputStore.d.ts 243 B

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