forked from github/plane
16 lines
305 B
TypeScript
16 lines
305 B
TypeScript
|
export interface IWebhook {
|
||
|
created_at: string;
|
||
|
cycle: boolean;
|
||
|
id: string;
|
||
|
is_active: boolean;
|
||
|
issue: boolean;
|
||
|
issue_comment: boolean;
|
||
|
module: boolean;
|
||
|
project: boolean;
|
||
|
secret_key?: string;
|
||
|
updated_at: string;
|
||
|
url: string;
|
||
|
}
|
||
|
|
||
|
export type TWebhookEventTypes = "all" | "individual";
|