mirror of
https://github.com/C9Glax/tranga-website.git
synced 2025-04-19 14:53:20 +02:00
7 lines
167 B
TypeScript
7 lines
167 B
TypeScript
export default interface INotificationConnector {
|
|
name: string;
|
|
url: string;
|
|
headers: Record<string, string>[];
|
|
httpMethod: string;
|
|
body: string;
|
|
} |