sourceMaps.ts 877 B

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