types/src/types/logs.ts

6 lines
95 B
TypeScript

export interface LogEntry {
[id: string]: number | string;
}
export type Logs = LogEntry[];