@sentry/cli
Version:
A command line utility to work with Sentry. https://docs.sentry.io/hosted/learn/cli/
30 lines (29 loc) • 493 B
TypeScript
/**
* Schema for the `deploys new` command.
*/
export declare const DEPLOYS_OPTIONS: {
env: {
param: string;
type: "string";
};
started: {
param: string;
type: "number";
};
finished: {
param: string;
type: "number";
};
time: {
param: string;
type: "number";
};
name: {
param: string;
type: "string";
};
url: {
param: string;
type: "string";
};
};