Update typing and add a comment to fix

This commit is contained in:
Ross Brodbeck 2020-07-24 08:42:58 -04:00
parent 7a188de18b
commit 702ce464a8
1 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,5 @@
import * as core from '@actions/core';
import {context, getOctokit} from '@actions/github';
//import {Octokit} from '@octokit/rest';
import {GetResponseTypeFromEndpointMethod} from '@octokit/types';
export interface Issue {
@ -57,7 +56,7 @@ export interface IssueProcessorOptions {
* Handle processing of issues for staleness/closure.
*/
export class IssueProcessor {
readonly client: any;
readonly client: any; // need to make this the correct type
readonly options: IssueProcessorOptions;
private operationsLeft = 0;