summary refs log tree commit diff
path: root/dist/Schema/Guild.d.ts
blob: 42d540ba012cf7c359b254042297faa3004124d0 (plain) (blame)
1
2
3
4
5
6
7
8
export declare const GuildSchema: {
    name: StringConstructor;
    $region: StringConstructor;
};
export interface GuildSchema {
    name: string;
    region?: string;
}