wip
This commit is contained in:
5
packages/shared/presentation/Presenter.ts
Normal file
5
packages/shared/presentation/Presenter.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
export interface Presenter<InputDTO, ViewModel> {
|
||||
present(input: InputDTO): void;
|
||||
getViewModel(): ViewModel | null;
|
||||
reset(): void;
|
||||
}
|
||||
1
packages/shared/presentation/index.ts
Normal file
1
packages/shared/presentation/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export * from './Presenter';
|
||||
Reference in New Issue
Block a user