mirror of
https://github.com/softprops/action-gh-release.git
synced 2025-06-28 06:16:01 +00:00
8 lines
334 B
TypeScript
8 lines
334 B
TypeScript
import { graphql as GraphQL } from '@octokit/graphql/dist-types/types';
|
|
import Octokit from '@octokit/rest';
|
|
import * as Context from './context';
|
|
export declare const context: Context.Context;
|
|
export declare class GitHub extends Octokit {
|
|
graphql: GraphQL;
|
|
constructor(token: string, opts?: Omit<Octokit.Options, 'auth'>);
|
|
}
|