import type { Temporal } from 'temporal-polyfill'; import type { NoteUuid } from '@/models/notes/noteUuid.model.ts'; export interface NoteIndex { uuid: NoteUuid; lastUpdatedByUserUuid: string; updatedAt: Temporal.ZonedDateTime; content: string; lastUpdatedByUser: string; }