add changes, credits, search

This commit is contained in:
Blake Joynes
2021-05-15 11:05:40 -04:00
parent adaad60d4c
commit 4cc6ea50df
22 changed files with 4938 additions and 202 deletions

View File

@@ -1,12 +1,9 @@
import {Api} from "../api";
import Api from '../api';
export class BaseEndpoint {
protected api: Api;
export class Base {
protected api: Api;
constructor(protected readonly accessToken: string){
this.api = new Api(accessToken);
}
constructor(protected readonly accessToken: string) {
this.api = new Api(accessToken);
}
}