Skip to content

Commit 9c720f9

Browse files
chore: tweaks
1 parent 31aac08 commit 9c720f9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/index.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
import { expect, it } from 'vitest';
2-
import { Command, ApiHelper, GitHelper, Types, Utils, ContextHelper } from './index.js';
2+
import { Command, ApiHelper, GitHelper, Utils, ContextHelper } from './index.js';
33

44
it('helpers can be imported', () => {
55
expect(Command).not.toBeFalsy();
66
expect(ApiHelper).not.toBeFalsy();
77
expect(GitHelper).not.toBeFalsy();
8-
expect(Types).not.toBeFalsy();
98
expect(Utils).not.toBeFalsy();
109
expect(ContextHelper).not.toBeFalsy();
1110
});

src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1+
import type { Octokit } from './types.js';
12
import ApiHelper from './api-helper.js';
23
import Command from './command.js';
34
import GitHelper from './git-helper.js';
45

5-
export * as Types from './types.js';
66
export * as Utils from './utils.js';
77
export * as ContextHelper from './context-helper.js';
88

9+
export type { Octokit };
910
export { Command, ApiHelper, GitHelper };

0 commit comments

Comments
 (0)