@handcash/handcash-connect
Version:
HandCash Connect SDK
19 lines (18 loc) • 556 B
TypeScript
import Wallet from './wallet';
import Profile from './profile';
import Items from './items';
type Params = {
authToken: string;
appSecret: string;
appId: string;
baseApiEndpoint: string;
baseTrustholderEndpoint: string;
};
export default class HandCashCloudAccount {
wallet: Wallet;
profile: Profile;
items: Items;
constructor(wallet: Wallet, profile: Profile, items: Items);
static fromAuthToken({ authToken, appSecret, appId, baseApiEndpoint, baseTrustholderEndpoint }: Params): HandCashCloudAccount;
}
export {};