UNPKG

fitbit-api-client

Version:
13 lines 511 B
import { BaseApi, TokenRequestOptions } from './base.api'; import { ProfileResponse } from '../models/profile'; export declare class ProfileApi extends BaseApi { scope: "profile"; /** * プロフィール取得API * https://dev.fitbit.com/build/reference/web-api/user/get-profile/ * @param options */ getProfile(options: TokenRequestOptions): Promise<ProfileResponse>; getProfileRaw(options: TokenRequestOptions): Promise<unknown>; } //# sourceMappingURL=profile.api.d.ts.map