matrix-dimension/web/app/shared/models/hookshot_webhook.ts
2021-12-03 13:49:02 -07:00

16 lines
297 B
TypeScript

export interface FE_HookshotWebhookBridge {
id: number;
upstreamId?: number;
provisionUrl?: string;
sharedSecret?: string;
isEnabled: boolean;
}
export interface FE_HookshotWebhookConnection {
id: string;
config: {
name?: string;
url: string;
};
}