1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-04 00:18:01 +01:00

fix: exported types x2

This commit is contained in:
Ivar Conradi Østhus 2021-08-13 13:51:29 +02:00
parent 2ff9c8372a
commit aaa5e056e5
No known key found for this signature in database
GPG Key ID: 31AC596886B0BD09
2 changed files with 1 additions and 3 deletions

View File

@ -19,7 +19,7 @@
"bugs": { "bugs": {
"url": "https://github.com/unleash/unleash/issues" "url": "https://github.com/unleash/unleash/issues"
}, },
"types": "./dist/lib/types/index.d.js", "types": "./dist/lib/server-impl.d.ts",
"engines": { "engines": {
"node": ">=14" "node": ">=14"
}, },

View File

@ -153,5 +153,3 @@ const serverImpl = {
}; };
export default serverImpl; export default serverImpl;
module.exports = serverImpl; module.exports = serverImpl;
export type { Controller, AuthenticationRequired, User, Logger };