trilium/src/services/meta/attribute_meta.ts
2024-07-24 20:20:20 +03:00

13 lines
257 B
TypeScript

import { AttributeType } from "../../becca/entities/rows.js";
interface AttributeMeta {
noteId?: string;
type: AttributeType;
name: string;
value: string;
isInheritable?: boolean;
position?: number;
}
export default AttributeMeta;