trilium/apps/server/src/services/meta/attribute_meta.ts
2025-04-22 17:16:41 +03:00

11 lines
238 B
TypeScript

import type { AttributeType } from "@triliumnext/commons";
export default interface AttributeMeta {
noteId?: string;
type: AttributeType;
name: string;
value: string;
isInheritable?: boolean;
position?: number;
}