UNPKG
@cao-mei-you-ren/afdian
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.2
爱发电 SDK for Node.js and Browser
github.com/willin/afdian-sdk
willin/afdian-sdk
@cao-mei-you-ren/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'
) };