UNPKG

leetcode-public-api

Version:

An unofficial public API for LeetCode with full type support and zero dependencies!

10 lines (8 loc) 228 B
import { ILeetCodeUser } from '..'; export * from './fetchAccount'; export * from './parse'; export type IGetLCAccount = (username: string) => Promise<{ status: number; statusText: string; data: ILeetCodeUser | null; }>;