summary refs log tree commit diff
path: root/util/src/schemas/WebhookCreateSchema.ts
blob: 12ab186962e26100fc4e234d49ece4ac3b1f9dab (plain) (blame)
1
2
3
4
5
6
7
8
// TODO: webhooks
export interface WebhookCreateSchema {
	/**
	 * @maxLength 80
	 */
	name: string;
	avatar?: string;
}