Skip to content

Commit

Permalink
[frontend] Add Event data painter abstract interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
DraTeots committed Sep 17, 2024
1 parent efce6a9 commit b9e8210
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
7 changes: 7 additions & 0 deletions firebird-ng/src/app/painters/IEntryComponentRenderer.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
interface IEntryComponentRenderer {
createFromObject(source: any): any;
toModel(source: any): any;
renderAtTime(source: any): any;
renderNoTime(source: any): any;

}
4 changes: 4 additions & 0 deletions firebird-ng/src/app/painters/Painter.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

interface Painter {
sendEmail(address: string, content: string): void;
}
4 changes: 4 additions & 0 deletions firebird-ng/src/app/painters/PointHitPainter.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

class PointHitPainter {

}

0 comments on commit b9e8210

Please sign in to comment.