syncmaps.d.ts 578 B

12345678
  1. import { APIResponseSuccess, CommandLineInputs, CommandLineOptions, CommandMetadata } from '../../definitions';
  2. import { Command } from '../../lib/command';
  3. export declare class MonitoringSyncSourcemapsCommand extends Command {
  4. getMetadata(): Promise<CommandMetadata>;
  5. run(inputs: CommandLineInputs, options: CommandLineOptions): Promise<void>;
  6. syncSourcemap(file: string, snapshotId: string, appVersion: string, commitHash: string, appflowId: string, token: string): Promise<void>;
  7. uploadSourcemap(sourcemap: APIResponseSuccess, file: string): Promise<void>;
  8. }