UNPKG

node-groupme

Version:

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

9 lines 273 B
import type Client from '../client/Client'; export default abstract class Base { readonly client: Client; readonly id: string; constructor(client: Client, id: string); _clone(): any; abstract _patch(data: any): this; } //# sourceMappingURL=Base.d.ts.map