eas-cli
Version:
EAS command line tool
15 lines (14 loc) • 644 B
TypeScript
import EasCommand from '../../commandUtils/EasCommand';
import { WebhookType } from '../../graphql/generated';
export default class WebhookList extends EasCommand {
static description: string;
static flags: {
json: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
event: import("@oclif/core/lib/interfaces").OptionFlag<WebhookType | undefined>;
};
static contextDefinition: {
loggedIn: import("../../commandUtils/context/LoggedInContextField").default;
projectId: import("../../commandUtils/context/ProjectIdContextField").ProjectIdContextField;
};
runAsync(): Promise<void>;
}