initial commit

This commit is contained in:
Blake Joynes
2021-05-15 00:22:10 -04:00
commit d800f56ee6
20 changed files with 697 additions and 0 deletions

17
src/endpoints/account.ts Normal file
View File

@@ -0,0 +1,17 @@
import { Api } from "../api";
import {Base} from "./base";
export class Account extends Base{
constructor(accessToken: string){
super(accessToken);
}
async details(): Promise<any> {
return await this.api.get('/account');
}
}