Convert action to TypeScript
This commit is contained in:
1
dist/index.d.ts
generated
vendored
Normal file
1
dist/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export {};
|
||||
34859
dist/index.js
generated
vendored
Normal file
34859
dist/index.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
dist/index.js.map
generated
vendored
Normal file
1
dist/index.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
16
dist/main.d.ts
generated
vendored
Normal file
16
dist/main.d.ts
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
import { Octokit } from '@octokit/rest';
|
||||
export declare function run(): Promise<void>;
|
||||
/**
|
||||
* Checks if this is the user's first issue.
|
||||
*
|
||||
* @param octokit Octokit instance
|
||||
* @returns true if this is the user's first issue
|
||||
*/
|
||||
export declare function isFirstIssue(octokit: Octokit): Promise<boolean>;
|
||||
/**
|
||||
* Checks if this is the user's first pull request.
|
||||
*
|
||||
* @param octokit Octokit instance
|
||||
* @returns true if this is the user's first pull request
|
||||
*/
|
||||
export declare function isFirstPullRequest(octokit: Octokit): Promise<boolean>;
|
||||
Reference in New Issue
Block a user