node-groupme
Version:
The only GroupMe API library that isn't a million years old.
13 lines • 465 B
TypeScript
import type { APIGroup } from 'groupme-api-types';
import type { Client, Group } from '..';
import { BaseGroup, ChannelType } from '..';
interface FormerGroupInterface {
rejoin(): Promise<Group>;
}
export default class FormerGroup extends BaseGroup implements FormerGroupInterface {
readonly type = ChannelType.FormerGroup;
constructor(client: Client, data: APIGroup);
rejoin(): Promise<Group>;
}
export {};
//# sourceMappingURL=FormerGroup.d.ts.map