mirror of
https://github.com/spacebarchat/server.git
synced 2026-05-12 08:04:52 +00: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;
|
|
}
|