sourceMaps.ts 513 B

12345678910111213141516171819202122232425
  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. files: {
  16. debugId: string;
  17. filePath: string;
  18. fileSize: number;
  19. fileType: number;
  20. id: string;
  21. sourcemap: string | null;
  22. }[];
  23. };