spacebar/src/util/schemas/WebhookCreateSchema.ts
2022-12-19 19:31:23 +11:00

9 lines
120 B
TypeScript

// TODO: webhooks
export interface WebhookCreateSchema {
/**
* @maxLength 80
*/
name: string;
avatar?: string;
}