UNPKG

eas-cli

Version:
15 lines (14 loc) 644 B
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>; }