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
/
contacts.d.ts
8 lines
(7 loc)
•
259 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
Contact
}
from
"./constants"
;
export
type
ContactsGetResponse
=
Array
<
Contact
>;
/** * Get contact list. * https://developer.chatwork.com/reference/get-contacts */
export
declare
function
get
(
apiToken
:
string
):
Promise
<
ContactsGetResponse
|
null
>;