1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

fix: export types from main entry

This commit is contained in:
Ivar Conradi Østhus 2021-08-13 13:42:08 +02:00
parent 26cab7684c
commit 1f9d31ea17
No known key found for this signature in database
GPG Key ID: 31AC596886B0BD09

View File

@ -11,6 +11,7 @@ import { createStores } from './db';
import { createServices } from './services'; import { createServices } from './services';
import { createConfig } from './create-config'; import { createConfig } from './create-config';
import User from './types/user'; import User from './types/user';
import { Logger } from './logger';
import * as permissions from './types/permissions'; import * as permissions from './types/permissions';
import AuthenticationRequired from './types/authentication-required'; import AuthenticationRequired from './types/authentication-required';
@ -152,3 +153,5 @@ const serverImpl = {
}; };
export default serverImpl; export default serverImpl;
module.exports = serverImpl; module.exports = serverImpl;
export type { Controller, AuthenticationRequired, User, Logger };