export interface HomelabApp { id: string; // uuid name: string; description: string | null; address: string; ssh_address: string | null; } // Defines the custom attributes Tiptap will store in the DOM/JSON schema export interface AppMentionAttributes { id: string; label: string; }