wuhp commited on
Commit
aa71778
·
verified ·
1 Parent(s): d137c87

Update types.ts

Browse files
Files changed (1) hide show
  1. types.ts +8 -0
types.ts CHANGED
@@ -1,4 +1,5 @@
1
 
 
2
  export enum LayerType {
3
  INPUT = 'Input',
4
  LINEAR = 'Linear',
@@ -120,3 +121,10 @@ export interface GeneratedCodeResponse {
120
  code: string;
121
  explanation: string;
122
  }
 
 
 
 
 
 
 
 
1
 
2
+
3
  export enum LayerType {
4
  INPUT = 'Input',
5
  LINEAR = 'Linear',
 
121
  code: string;
122
  explanation: string;
123
  }
124
+
125
+ export interface LogEntry {
126
+ id: string;
127
+ timestamp: Date;
128
+ message: string;
129
+ type: 'info' | 'success' | 'warning' | 'error';
130
+ }