UNPKG

576 BTypeScriptView Raw
1import { BaseCoin } from '@bitgo/sdk-core';
2import { BitGoAPI, BitGoAPIOptions } from '@bitgo/sdk-api';
3export type BitGoOptions = BitGoAPIOptions;
4export declare class BitGo extends BitGoAPI {
5 /**
6 * Constructor for BitGo Object
7 */
8 constructor(params?: BitGoAPIOptions);
9 /**
10 * Create a basecoin object
11 * @param coinName
12 */
13 coin(coinName: string): BaseCoin;
14 /**
15 * Create a basecoin object for a virtual token
16 * @param tokenName
17 */
18 token(tokenName: string): Promise<BaseCoin>;
19}
20//# sourceMappingURL=bitgo.d.ts.map
\No newline at end of file