UNPKG

eas-cli

Version:

EAS command line tool

17 lines (16 loc) 826 B
import EasCommand from '../../commandUtils/EasCommand'; import { WebhookType } from '../../graphql/generated'; export default class WebhookCreate extends EasCommand { static description: string; static flags: { 'non-interactive': import("@oclif/core/lib/interfaces").BooleanFlag<boolean>; event: import("@oclif/core/lib/interfaces").OptionFlag<WebhookType | undefined>; url: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>; secret: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>; }; static contextDefinition: { loggedIn: import("../../commandUtils/context/LoggedInContextField").default; projectId: import("../../commandUtils/context/ProjectIdContextField").ProjectIdContextField; }; runAsync(): Promise<void>; }