UNPKG
chatwork-api-wrap
Version:
latest (1.1.0)
1.1.0
1.0.0
0.2.3
0.2.2
0.2.1
0.2.0
0.1.3
0.1.2
0.1.1
0.1.0
Chatwork api wrapper.
github.com/shoheiono/chatwork-api-wrap
shoheiono/chatwork-api-wrap
chatwork-api-wrap
/
src
/
typings
/
me.d.ts
8 lines
(7 loc)
•
208 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
Me
}
from
"./constants"
;
export
type
MeGetResponse
=
Me
;
/** * Get my info. * https://developer.chatwork.com/reference/get-me */
export
declare
function
get
(
apiToken
:
string
):
Promise
<
Me
|
null
>;