Skip to content

SearchQuery

type SearchQuery =
| {
extraQueryUrlParams?: URLSearchParams;
query: string;
source?: SearchPlatform;
}
| string;

Defined in: src/structures/Types/Utils.ts:597

SearchQuery Object for raw lavalink requests

{
extraQueryUrlParams?: URLSearchParams;
query: string;
source?: SearchPlatform;
}
NameTypeDescriptionDefined in
extraQueryUrlParams?URLSearchParamsExtra url query params to use, e.g. for flowerttssrc/structures/Types/Utils.ts:601
querystringlavalink search Query / identifier stringsrc/structures/Types/Utils.ts:599
source?SearchPlatformSource to append to the search query stringsrc/structures/Types/Utils.ts:603

string