UNPKG

@ln-markets/sdk

Version:
14 lines 432 B
import type { KyInstance } from 'ky'; export interface GetAccountOutput { balance: number; email: null | string; feeTier: number; id: string; linkingpublickey: null | string; syntheticUsdBalance: number; username: string; } type GetAccount = () => Promise<GetAccountOutput>; export declare const createGetAccount: (instance: KyInstance) => GetAccount; export {}; //# sourceMappingURL=get-account.d.ts.map