Skip to content

Commit

Permalink
Fixed linting
Browse files Browse the repository at this point in the history
  • Loading branch information
sketchthat committed Oct 7, 2018
1 parent d3408d3 commit e5c2d70
Show file tree
Hide file tree
Showing 59 changed files with 1,890 additions and 1 deletion.
12 changes: 12 additions & 0 deletions dist/account.d.ts
@@ -0,0 +1,12 @@
import { Accounts } from './interfaces/accounts.interface';
import { AccountsBalances } from './interfaces/accountsBalances.interface';
export declare class Account {
private common;
private accessTokenId;
private privateKey;
private apiPrefix;
private requestMethod;
constructor(accessTokenId?: string, privateKey?: string);
accounts(): Promise<Accounts>;
accountsBalance(accountId: string): Promise<AccountsBalances>;
}
37 changes: 37 additions & 0 deletions dist/account.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/account.spec.d.ts
@@ -0,0 +1 @@
export {};
102 changes: 102 additions & 0 deletions dist/account.spec.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions dist/common.d.ts
@@ -0,0 +1,5 @@
export declare class Common {
private uri;
constructor();
request(method: string, path: string, qs?: object, body?: object): Promise<any>;
}
31 changes: 31 additions & 0 deletions dist/common.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/common.spec.d.ts
@@ -0,0 +1 @@
export {};

0 comments on commit e5c2d70

Please sign in to comment.