node-groupme
Version:
The only GroupMe API library that isn't a million years old.
17 lines (13 loc) • 353 B
text/typescript
import type Client from '../client/Client'
export default abstract class Base {
readonly client: Client
readonly id: string
constructor(client: Client, id: string) {
this.client = client
this.id = id
}
_clone() {
return Object.assign(Object.create(this), this)
}
abstract _patch(data: any): this
}