@leoua/coc-api
Version:
Yet another Clash of Clans API, but with TS support
9 lines (8 loc) • 316 B
TypeScript
/// <reference path="../../../types/types.d.ts" />
export interface IVerifyTokenSearchParams {
token: string;
}
export default class PlayerTag {
static readonly path: string;
static get(api: IClashOfClansAPI, playerTag: string, params: IVerifyTokenSearchParams): Promise<IVerifyTokenResponse>;
}