UNPKG
ztobp.js
Version:
latest (1.0.1)
1.0.1
1.0.0
A bot framework for custom bots in chat rooms.
github.com/yourusername/ztobpjs
yourusername/ztobpjs
ztobp.js
/
src
/
utils
/
api.ts
7 lines
(6 loc)
•
159 B
text/typescript
View Raw
1
2
3
4
5
6
7
// src/utils/api.ts
export
async
function
fetchData
(
url: string
) {
const
response =
await
fetch
(url);
const
data =
await
response.
json
();
return
data; }