get-past-sponsors
v0.1.2
Published
> The new Sponsors Profile is [released](https://github.com/community/community/discussions/37234) that includes the past sponsors. But we can't get the past sponsors from the API.
Downloads
3
Readme
get-past-sponsors
The new Sponsors Profile is released that includes the past sponsors. But we can't get the past sponsors from the API.
Installation
pnpm install get-past-sponsors
Usage
import getPastSponsors from "get-past-sponsors";
await getPastSponsors('dohooo')
.then(sponsors=>{
console.log(sponsors)
})
.catch(e=>{
console.error(e)
})
Types
interface IUser {
username: string
avatar: string
}
getPastSponsors(username: string): Promise<IUser[]>