node-groupme
Version:
The only GroupMe API library that isn't a million years old.
13 lines • 387 B
TypeScript
import type { APIUser } from 'groupme-api-types';
import type { Client } from '..';
import { Base } from '..';
interface UserInterface {
}
export default class User extends Base implements UserInterface {
avatar: string | null;
name: string;
constructor(client: Client, data: APIUser);
_patch(data: Partial<APIUser>): this;
}
export {};
//# sourceMappingURL=User.d.ts.map