fix issues in core

This commit is contained in:
2025-12-23 17:31:45 +01:00
parent d04a21fe02
commit 4318b380d9
34 changed files with 116 additions and 103 deletions

View File

@@ -2,5 +2,4 @@ export * from './application/Result';
export * as application from './application';
export * as domain from './domain';
export * as errors from './errors';
export * from './presentation';
export * from './application/AsyncUseCase';

View File

@@ -1,6 +0,0 @@
// This must not be used within core. It's in presentation layer, e.g. to be used in an API.
export interface Presenter<InputDTO, ResponseModel> {
present(input: InputDTO): void;
getResponseModel(): ResponseModel | null;
reset(): void;
}

View File

@@ -1 +0,0 @@
export * from './Presenter';