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;
|
|
|
|
}
|