1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-22 02:31:36 +02:00

Update Guild.ts

This commit is contained in:
Intevel ツ 2021-05-05 22:21:14 +02:00
parent 83b2d5d605
commit 019633a3de

View File

@ -99,3 +99,14 @@ export const GuildGetSchema = {
approximate_presence_count: true,
// welcome_screen: true,
};
export const GuildTemplateCreateSchema = {
name: String,
$avatar: String,
};
export interface GuildTemplateCreateSchema {
name: string,
avatar?: string,
}