mirror of
https://github.com/zadam/trilium.git
synced 2026-01-01 04:04:25 +01:00
11 lines
238 B
TypeScript
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;
|
|
}
|