Skip to content

Commit

Permalink
feat: Export all types (#422)
Browse files Browse the repository at this point in the history
  • Loading branch information
mykola-mokhnach authored Mar 26, 2024
1 parent 2eb2c87 commit deb8463
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
8 changes: 3 additions & 5 deletions index.js → index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
import { getSimulator } from './lib/simulator';
import { killAllSimulators, simExists } from './lib/utils';

export {
getSimulator,
killAllSimulators,
simExists,
};
export { getSimulator, killAllSimulators, simExists };

export type * from './lib/types';
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"lib": "lib"
},
"files": [
"index.js",
"index.ts",
"lib",
"build/index.*",
"build/lib",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"checkJs": true
},
"include": [
"index.js",
"index.ts",
"lib"
]
}

0 comments on commit deb8463

Please sign in to comment.