mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-13 14:12:41 +01:00
9 lines
172 B
TypeScript
9 lines
172 B
TypeScript
export declare const GuildSchema: {
|
|
name: StringConstructor;
|
|
$region: StringConstructor;
|
|
};
|
|
export interface GuildSchema {
|
|
name: string;
|
|
region?: string;
|
|
}
|