sourceMaps.ts 574 B

12345678910111213141516171819202122232425262728
  1. export type DebugIdBundleAssociation = {
  2. dist: string[] | string | null;
  3. release: string;
  4. };
  5. export type DebugIdBundle = {
  6. associations: DebugIdBundleAssociation[];
  7. bundleId: string;
  8. date: string;
  9. dateModified: string;
  10. fileCount: number;
  11. };
  12. export type DebugIdBundleArtifact = {
  13. associations: DebugIdBundleAssociation[];
  14. bundleId: string;
  15. date: string;
  16. dateModified: string;
  17. fileCount: number;
  18. files: {
  19. debugId: string;
  20. filePath: string;
  21. fileSize: number;
  22. fileType: number;
  23. id: string;
  24. sourcemap: string | null;
  25. }[];
  26. };