sourceMaps.ts 371 B

1234567891011121314151617181920
  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. bundleId: string;
  10. dist: string | null;
  11. files: {
  12. debugId: string;
  13. filePath: string;
  14. fileSize: number;
  15. fileType: number;
  16. id: string;
  17. }[];
  18. release: string | null;
  19. };