8 lines
145 B
TypeScript
8 lines
145 B
TypeScript
|
import type { LogSection } from '@lastres/log-section'
|
||
|
|
||
|
export interface LogLine {
|
||
|
content: LogSection[]
|
||
|
date: string
|
||
|
uuid: string
|
||
|
}
|