14 lines
297 B
TypeScript
14 lines
297 B
TypeScript
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;
|
|
}
|