UNPKG

lightrail-client

Version:
11 lines (10 loc) 293 B
import { LightrailResponse } from "../LightrailResponse"; import { Webhook } from "../../model"; export interface CreateWebhookParams { id: string; url: string; events: string[]; active?: boolean; } export interface CreateWebhookResponse extends LightrailResponse<Webhook> { }