supercell-api-scraper
Version:
A supercell games scraper that has additional calculations and info, easy to use methods. [BETA]
24 lines (23 loc) • 539 B
TypeScript
export declare interface ClientOptions {
ClashOfClans?: ClashOfClansOptions | null;
ClashRoyale?: ClashRoyaleOptions | null;
BrawlStars?: BrawlStarsOptions | null;
config?: {
debug?: boolean;
};
}
export declare type ClashOfClansOptions = {
token: string;
};
export declare type ClashRoyaleOptions = {
token: string;
};
export declare type BrawlStarsOptions = {
token: string;
};
export interface FetchOptions {
predomain?: string;
name?: string;
tag?: string;
subdomain?: string;
}