You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
356 B
TypeScript
9 lines
356 B
TypeScript
import { GraphQlQueryResponse, Variables } from '@octokit/graphql';
|
|
import Octokit from '@octokit/rest';
|
|
import * as Context from './context';
|
|
export declare const context: Context.Context;
|
|
export declare class GitHub extends Octokit {
|
|
graphql: (query: string, variables?: Variables) => Promise<GraphQlQueryResponse>;
|
|
constructor(token: string);
|
|
}
|