9 lines
120 B
TypeScript
9 lines
120 B
TypeScript
// TODO: webhooks
|
|
export interface WebhookCreateSchema {
|
|
/**
|
|
* @maxLength 80
|
|
*/
|
|
name: string;
|
|
avatar?: string;
|
|
}
|