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