Skip to content

Commit

Permalink
fix: export ROOT and the WorkspaceSuccess type
Browse files Browse the repository at this point in the history
  • Loading branch information
voxpelli committed Apr 4, 2024
1 parent eaf34a8 commit 2dd8c39
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
export type * from './lib/lookup-types.d.ts';

export type { VersionRangeItem, VersionRangeOptions, VersionRangeResult, VersionRangesOptions } from './lib/check-version-range.js';
export type { LookupOptions } from './lib/installed-check.js';
export type { LookupOptions, WorkspaceSuccess } from './lib/installed-check.js';
export type { InstalledChecks, InstalledCheckOptions, InstalledCheckResult } from './lib/perform-installed-check.js';

export { checkVersionRange, checkVersionRangeCollection } from './lib/check-version-range.js';
export { installedCheck } from './lib/installed-check.js';
export { installedCheck, ROOT } from './lib/installed-check.js';
export { performInstalledCheck } from './lib/perform-installed-check.js';
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export { checkVersionRange, checkVersionRangeCollection } from './lib/check-version-range.js';
export { installedCheck } from './lib/installed-check.js';
export { installedCheck, ROOT } from './lib/installed-check.js';
export { performInstalledCheck } from './lib/perform-installed-check.js';

0 comments on commit 2dd8c39

Please sign in to comment.