21 lines
416 B
TypeScript
21 lines
416 B
TypeScript
export interface HomelabApp {
|
|
id: string; // uuid
|
|
name: string;
|
|
description: string | null;
|
|
address: string;
|
|
ssh_address: string | null;
|
|
}
|
|
|
|
export interface Blog {
|
|
id: string;
|
|
title: string;
|
|
content: string;
|
|
reference: String[]; // list of app ids
|
|
}
|
|
|
|
// Defines the custom attributes Tiptap will store in the DOM/JSON schema
|
|
export interface AppMentionAttributes {
|
|
id: string;
|
|
label: string;
|
|
}
|