We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35e17ea commit d53d987Copy full SHA for d53d987
src/index.ts
@@ -3,6 +3,7 @@ import Command from './command';
3
import ApiHelper from './api-helper';
4
import GitHelper from './git-helper';
5
6
+export * as Types from './types';
7
export * as Utils from './utils';
8
export * as ContextHelper from './context-helper';
9
src/types.ts
@@ -0,0 +1,3 @@
1
+import {GitHub} from '@actions/github/lib/utils';
2
+
+export type Octokit = InstanceType<typeof GitHub>;
0 commit comments