-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCategory.d.ts
42 lines (42 loc) · 1.66 KB
/
Category.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import type { CategoryNameType } from "../Typings/types";
import getCategory from "../Functions/getCategory";
/**
* @class Class for anything trivia category related.
*/
export default class Category {
/**
* An array of all category names. Use `Category.random()` for a random pick.
*/
static allNames: CategoryNameType[];
/**
* Decodes a URLLegacy, URL3968 or Base64 category name.
* @param {string} str string to decode.
* @returns {string} The decoded category name.
*/
static decodeEncodedCategoryName(str: string): CategoryNameType | null;
/**
* Fetches a trivia category's data. Duplicate of `getCategory()`.
* @param {CategoryResolvable} arg An argument resolving to a trivia category.
* @returns {Promise<CategoryData>} The data of the category.
*/
static getCategory: typeof getCategory;
/**
* Returns a category id when given it's name.
* @param {CategoryNameType} name The name of the category.
* @returns {number | null} The id if resolvable.
*/
static idByName(name: CategoryNameType): number | null;
/**
* Returns a category name when given it's id.
* @param {number} id The id of the category.
* @returns {CategoryNameType | null} The name if resolvable.
*/
static nameById(id: number): CategoryNameType | null;
/**
* Picks a random category name or id.
* @param {'name' | 'id'} resolvableType The kind of resolvable to return (default `'name'`).
* @returns {CategoryNameType | number} A random category id or name.
*/
static random(resolvableType: "name"): CategoryNameType;
static random(resolvableType: "id"): number;
}