export.ts 238 B

12345678910111213
  1. import type { Stats } from 'fs';
  2. export type ZipFileStat = {
  3. meta: object;
  4. fileName: string;
  5. zipFilePath: string;
  6. fileStat: Stats;
  7. innerFileStats: {
  8. fileName: string;
  9. collectionName: string;
  10. size: number;
  11. }[];
  12. };