@prismicio/client
Version:
The official JavaScript + TypeScript client library for Prismic
10 lines (9 loc) • 310 B
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;
}