UNPKG

node-groupme

Version:

The only GroupMe API library that isn't a million years old.

16 lines 496 B
import type { APIRelationship } from 'groupme-api-types/v4'; import type { Client, User } from '..'; import { Base } from '..'; export default class Relationship extends Base { user: User; reason: number; hidden: boolean; appInstalled: boolean; mri: string; createdAt: number; updatedAt: number; _iso8601: string; constructor(client: Client, data: APIRelationship); _patch(data: Partial<APIRelationship>): this; } //# sourceMappingURL=Relationship.d.ts.map