Spaces:
Running
Running
Update types.ts
Browse files
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 |
+
}
|