node-groupme
Version:
The only GroupMe API library that isn't a million years old.
10 lines • 324 B
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);
}
export {};
//# sourceMappingURL=ClientUser.d.ts.map