5 lines
138 B
TypeScript
5 lines
138 B
TypeScript
export interface Presenter<InputDTO, ViewModel> {
|
|
present(input: InputDTO): void;
|
|
getViewModel(): ViewModel | null;
|
|
reset(): void;
|
|
} |