A simple module for GitHub API v3 types
npm install github-typesA simple package with GitHub API types.
This is an attempt to create an easy to use type package for use with the GitHub API v3.
This is not meant to be an API wrapper or a substitute for your favorite GitHub client.
If you are looking for a client please take a look at Octokit/rest.js.
For other languages take a look at this list.
You can install this package from NPM but running:
``shell`
$ npm i github-types
Once installed you can use these types by importing/requiring them in your code:
`javascript``
import { Repo } from "github-types";
We have a simple example in the examples directory that uses the GitHub API with these types.