12345678910111213141516171819202122232425262728 |
- export type DebugIdBundleAssociation = {
- dist: string[] | string | null;
- release: string;
- };
- export type DebugIdBundle = {
- associations: DebugIdBundleAssociation[];
- bundleId: string;
- date: string;
- dateModified: string;
- fileCount: number;
- };
- export type DebugIdBundleArtifact = {
- associations: DebugIdBundleAssociation[];
- bundleId: string;
- date: string;
- dateModified: string;
- fileCount: number;
- files: {
- debugId: string;
- filePath: string;
- fileSize: number;
- fileType: number;
- id: string;
- sourcemap: string | null;
- }[];
- };
|