mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2024-11-06 12:05:48 +00:00
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);
|
||
|
}
|