sourceMaps.ts 853 B

12345678910111213141516171819202122232425262728293031
  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. // TODO(Pri): Remove this type once fully transitioned to associations.
  10. dist: string | null;
  11. fileCount: number;
  12. // TODO(Pri): Remove this type once fully transitioned to associations.
  13. release: string | null;
  14. };
  15. export type DebugIdBundleArtifact = {
  16. associations: DebugIdBundleAssociation[];
  17. bundleId: string;
  18. // TODO(Pri): Remove this type once fully transitioned to associations.
  19. dist: string | null;
  20. files: {
  21. debugId: string;
  22. filePath: string;
  23. fileSize: number;
  24. fileType: number;
  25. id: string;
  26. }[];
  27. // TODO(Pri): Remove this type once fully transitioned to associations.
  28. release: string | null;
  29. };