tranga-website/Website/modules/interfaces/INotificationConnector.ts

7 lines
167 B
TypeScript

export default interface INotificationConnector {
name: string;
url: string;
headers: Record<string, string>[];
httpMethod: string;
body: string;
}