@htutwaiphyo/typescript-sdk
v1.0.3
Published
Software Development Kit with Typescript
Downloads
6
Readme
TypeScript SDK
This SDK connects to the JSON Placeholder API for fetching posts, creating and retrieving a particular post from the API
Installation
npm i @htutwaiphyo/typescript-sdk
Example
import SocialPlus from "@htutwaiphyo/typescript-sdk";
const client: SocialPlus = new SocialPlus({
apiKey: "API_KEY",
});
client.getPosts().then(console);
client.createPost({
userId: 1,
body: "test",
title: "test",
})
.then(console);