UNPKG
@sethub/sdk
Version:
latest (0.7.3-beta)
0.7.3-beta
0.7.2-beta
0.7.1-beta
0.7.0-beta
<div align="center"> <h1> SetHub SDK </h1>
@sethub/sdk
/
dist
/
cjs
/
services
/
profiles
/
index.d.ts
8 lines
(7 loc)
•
291 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
HttpClient
}
from
"../../http/client"
;
import
{
GetMyProfile
}
from
"./protocols/get-my.protocol"
;
export
declare
class
Profiles
{
private
readonly
httpClient;
constructor
(
httpClient
:
HttpClient
);
getMy
(
options
?:
GetMyProfile
.
Options
):
Promise
<
GetMyProfile
.
Response
>; }