mirror of
https://github.com/actions/hello-world-javascript-action.git
synced 2025-04-07 23:09:43 +00:00
7 lines
271 B
TypeScript
Executable File
7 lines
271 B
TypeScript
Executable File
import { GraphQlQueryResponse, Variables } from '@octokit/graphql';
|
|
import Octokit from '@octokit/rest';
|
|
export declare class GitHub extends Octokit {
|
|
graphql: (query: string, variables?: Variables) => Promise<GraphQlQueryResponse>;
|
|
constructor(token: string);
|
|
}
|