6 lines
92 B
TypeScript
6 lines
92 B
TypeScript
export type LogEntry = {
|
|
timestamp: string;
|
|
message: string;
|
|
bootId: string;
|
|
};
|