mirror of
				https://kkgithub.com/actions/setup-node.git
				synced 2025-10-31 10:41:57 +08: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);
 | |
| }
 | 
