@sentry/cli
Version:
A command line utility to work with Sentry. https://docs.sentry.io/hosted/learn/cli/
22 lines (21 loc) • 369 B
TypeScript
/**
* Schema for the `sourcemaps inject` command.
*/
export declare const INJECT_OPTIONS: {
ignore: {
param: string;
type: "array";
};
ignoreFile: {
param: string;
type: "string";
};
ext: {
param: string;
type: "array";
};
dryRun: {
param: string;
type: "boolean";
};
};