@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
29 lines (28 loc) • 986 B
TypeScript
/**
* AskNews API
* AskNews API [](https://status.asknews.app/status/prod)
*
* The version of the OpenAPI document: 0.24.22
* Contact: contact@emergentmethods.ai
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import * as runtime from '../runtime';
import type { ProfileResponse } from '../models/index';
/**
*
*/
export declare class ProfileApi extends runtime.BaseAPI {
/**
* Get the current profile
* Get the current user\'s profile
*/
getUserProfileRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ProfileResponse>>;
/**
* Get the current profile
* Get the current user\'s profile
*/
getUserProfile(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ProfileResponse>;
}