(timestamp: string)
| 10 | import type { DatabaseType } from '../../types/datasource'; |
| 11 | |
| 12 | function formatTime(timestamp: string): string { |
| 13 | const date = new Date(timestamp); |
| 14 | return date.toLocaleTimeString(undefined, { |
| 15 | hour: '2-digit', |
| 16 | minute: '2-digit', |
| 17 | second: '2-digit', |
| 18 | }); |
| 19 | } |
| 20 | |
| 21 | function formatDate(timestamp: string): string { |
| 22 | const date = new Date(timestamp); |