fix: Add missing exports.

This commit is contained in:
Ruben Verborgh 2021-08-04 17:10:11 +02:00
parent c1d8f0e841
commit 702ac7887e
2 changed files with 7 additions and 1 deletions

View File

@ -6,5 +6,6 @@
"HttpErrorOptions",
"Template",
"TemplateEngine",
"ValuePreferencesArg"
"ValuePreferencesArg",
"WinstonLogger"
]

View File

@ -154,7 +154,9 @@ export * from './logging/Logger';
export * from './logging/LoggerFactory';
export * from './logging/LogLevel';
export * from './logging/LogUtil';
export * from './logging/VoidLogger';
export * from './logging/VoidLoggerFactory';
export * from './logging/WinstonLogger';
export * from './logging/WinstonLoggerFactory';
// Pods/Generate/Variables
@ -270,6 +272,7 @@ export * from './storage/RoutingResourceStore';
// Util/Errors
export * from './util/errors/BadRequestHttpError';
export * from './util/errors/ConflictHttpError';
export * from './util/errors/ErrorUtil';
export * from './util/errors/ForbiddenHttpError';
export * from './util/errors/HttpError';
export * from './util/errors/InternalServerError';
@ -311,11 +314,13 @@ export * from './util/templates/TemplateEngine';
// Util
export * from './util/ContentTypes';
export * from './util/FetchUtil';
export * from './util/GuardedStream';
export * from './util/HeaderUtil';
export * from './util/PathUtil';
export * from './util/QuadUtil';
export * from './util/RecordObject';
export * from './util/ResourceUtil';
export * from './util/StreamUtil';
export * from './util/TermUtil';
export * from './util/Vocabularies';