UNPKG

scidapi-client

Version:

Supercell ID API client

23 lines (22 loc) 470 B
/** * Identifier types supported by SCID. */ export type IdentifierType = "handle" | "scid" | "appAccountId"; export type IdentifierTypeArray = "handles" | "scids" | "appAccountIds"; /** * Standard profile response from SCID API. */ export interface ProfileResponse { data: { profiles?: any[]; [key: string]: any; }; } /** * Friends response from SCID API. */ export interface FriendsResponse { data: { friends: any[]; }; }