@prismicio/client
Version:
The official JavaScript + TypeScript client library for Prismic
15 lines (13 loc) • 301 B
JavaScript
//#region src/types/webhook/types.ts
/**
* Types of Prismic Webhooks.
*
* @see More details: {@link https://prismic.io/docs/webhooks}
*/
const WebhookType = {
APIUpdate: "api-update",
TestTrigger: "test-trigger"
};
//#endregion
exports.WebhookType = WebhookType;
//# sourceMappingURL=types.cjs.map