@prismicio/client
Version:
The official JavaScript + TypeScript client library for Prismic
11 lines (9 loc) • 306 B
text/typescript
import type { WebhookBodyBase, WebhookType } from "./types"
/**
* Webhook payload sent when a test webhook action is triggered.
*
* @see More details: {@link https://prismic.io/docs/webhooks}
*/
export interface WebhookBodyTestTrigger extends WebhookBodyBase {
type: typeof WebhookType.TestTrigger
}