1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-14 06:32:36 +01:00
server/dist/Schema/Guild.d.ts

9 lines
172 B
TypeScript
Raw Normal View History

2021-02-09 19:15:08 +01:00
export declare const GuildSchema: {
2021-02-09 19:10:35 +01:00
name: StringConstructor;
$region: StringConstructor;
};
2021-02-09 19:15:08 +01:00
export interface GuildSchema {
2021-02-09 19:10:35 +01:00
name: string;
region?: string;
}