JSPM

  • Created
  • Published
  • Downloads 19106247
  • Score
    100M100P100Q228762F
  • License MIT

Shared TypeScript definitions for Octokit projects

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@octokit/types) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    types.ts

    Shared TypeScript definitions for Octokit projects

    @latest Build Status

    Usage

    See all exported types at https://octokit.github.io/types.ts

    Examples

    Get parameter and response data types for a REST API endpoint

    import { Endpoints } from "@octokit/types";
    
    type listUserReposParameters =
      Endpoints["GET /repos/{owner}/{repo}"]["parameters"];
    type listUserReposResponse = Endpoints["GET /repos/{owner}/{repo}"]["response"];
    
    async function listRepos(
      options: listUserReposParameters,
    ): listUserReposResponse["data"] {
      // ...
    }

    Get response types from endpoint methods

    import {
      GetResponseTypeFromEndpointMethod,
      GetResponseDataTypeFromEndpointMethod,
    } from "@octokit/types";
    import { Octokit } from "@octokit/rest";
    
    const octokit = new Octokit();
    type CreateLabelResponseType = GetResponseTypeFromEndpointMethod<
      typeof octokit.issues.createLabel
    >;
    type CreateLabelResponseDataType = GetResponseDataTypeFromEndpointMethod<
      typeof octokit.issues.createLabel
    >;

    Contributing

    See CONTRIBUTING.md

    License

    MIT