Routes: {
Guilds: {
FetchById: ((id, withCounts) => string);
GetWelcomeScreen: ((id) => string);
SetWelcomeScreen: ((id, enabled, description, channels) => string);
};
Users: {
ById: ((id) => string);
Me: string;
};
} = ...
Type declaration
-
Guilds: {
FetchById: ((id, withCounts) => string);
GetWelcomeScreen: ((id) => string);
SetWelcomeScreen: ((id, enabled, description, channels) => string);
}
-
FetchById: ((id, withCounts) => string)
-
- (id, withCounts): string
-
Parameters
-
id: string
-
withCounts: boolean
Returns string
-
GetWelcomeScreen: ((id) => string)
-
- (id): string
-
Returns string
-
SetWelcomeScreen: ((id, enabled, description, channels) => string)
-
- (id, enabled, description, channels): string
-
Parameters
-
id: string
-
enabled: boolean
-
description: string
-
Returns string
-
Users: {
ById: ((id) => string);
Me: string;
}
-
ById: ((id) => string)
-
- (id): string
-
Returns string
-
Me: string