sourceMaps.ts 274 B

123456789101112131415
  1. export type DebugIdBundle = {
  2. bundleId: string;
  3. date: string;
  4. dist: string | null;
  5. fileCount: number;
  6. release: string | null;
  7. };
  8. export type DebugIdBundleArtifact = {
  9. debugId: string;
  10. filePath: string;
  11. fileSize: number;
  12. fileType: number;
  13. id: string;
  14. };