UNPKG

@sentry/cli

Version:

A command line utility to work with Sentry. https://docs.sentry.io/hosted/learn/cli/

59 lines (58 loc) 1.07 kB
/** * Schema for the `upload-sourcemaps` command. */ export declare const SOURCEMAPS_OPTIONS: { ignore: { param: string; type: "array"; }; ignoreFile: { param: string; type: "string"; }; dist: { param: string; type: "string"; }; decompress: { param: string; type: "boolean"; }; rewrite: { param: string; invertedParam: string; type: "boolean"; }; sourceMapReference: { invertedParam: string; type: "boolean"; }; dedupe: { invertedParam: string; type: "boolean"; }; stripPrefix: { param: string; type: "array"; }; stripCommonPrefix: { param: string; type: "boolean"; }; validate: { param: string; type: "boolean"; }; urlPrefix: { param: string; type: "string"; }; urlSuffix: { param: string; type: "string"; }; ext: { param: string; type: "array"; }; };