mirror of
https://github.com/zadam/trilium.git
synced 2025-12-29 02:34: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;
|
|
}
|