mirror of
https://github.com/zadam/trilium.git
synced 2026-01-11 17:14:26 +01:00
13 lines
257 B
TypeScript
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;
|