node-groupme
Version:
The only GroupMe API library that isn't a million years old.
12 lines (9 loc) • 306 B
text/typescript
import type { APIUser } from 'groupme-api-types'
import type { Client } from '..'
import { User } from '..'
interface ClientUserInterface {}
export default class ClientUser extends User implements ClientUserInterface {
constructor(client: Client, data: APIUser) {
super(client, data)
}
}