Files
gridpilot.gg/core/shared/presentation/Presenter.ts
2025-12-21 17:05:36 +01:00

6 lines
243 B
TypeScript

// 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;
}