node-groupme
Version:
The only GroupMe API library that isn't a million years old.
12 lines • 421 B
TypeScript
import type { APIUser } from 'groupme-api-types';
import type { Client } from '..';
import { BaseManager, User } from '..';
interface UserManagerInterface {
}
export default class UserManager extends BaseManager<User, typeof User> implements UserManagerInterface {
constructor(client: Client);
_add(data: APIUser): User;
fetch(id: string): Promise<User>;
}
export {};
//# sourceMappingURL=UserManager.d.ts.map