UNPKG
afdian
Version:
latest (2.0.0)
2.0.0
1.0.1
0.0.2
0.0.1
0.0.0
爱发电 SDK for Node.js and Browser
github.com/willin/afdian-sdk
willin/afdian-sdk
afdian
/
src
/
constants
/
api.ts
10 lines
(7 loc)
•
235 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
const
API_BASE
=
'https://afdian.com/api/open'
;
const
getUrl = (
path
:
string
):
string
=>
`
${API_BASE}
/
${path}
`
;
export
default
{
ping
:
getUrl
(
'ping'
),
queryOrder
:
getUrl
(
'query-order'
),
querySponsor
:
getUrl
(
'query-sponsor'
) };