UNPKG

@varandas/clash-royale-api

Version:

A Clash Royale API official wrapper for seamless integration with your applications.

10 lines (9 loc) 266 B
import { AxiosInstance } from 'axios'; import { CardResponse } from '../interfaces'; /** * Get list of all available cards. * * @param {AxiosInstance} apiClient */ declare const getCards: (apiClient: AxiosInstance) => Promise<CardResponse>; export { getCards };