Skip to content

Instantly share code, notes, and snippets.

@carlrip
Created January 27, 2019 11:05
Show Gist options
  • Save carlrip/2e6ac7fe632841ffe2acfa9db9de1c1d to your computer and use it in GitHub Desktop.
Save carlrip/2e6ac7fe632841ffe2acfa9db9de1c1d to your computer and use it in GitHub Desktop.
POST using http
const response = await http<{ id: number }>(
new Request("https://jsonplaceholder.typicode.com/posts", {
method: "post",
body: JSON.stringify({ title: "my post", body: "some content" })
})
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment