mirror of
https://github.com/TriliumNext/Notes.git
synced 2026-01-06 21:09:50 -06:00
13 lines
248 B
TypeScript
13 lines
248 B
TypeScript
import { AttributeType } from "../../becca/entities/rows";
|
|
|
|
interface AttributeMeta {
|
|
noteId?: string;
|
|
type: AttributeType;
|
|
name: string;
|
|
value: string;
|
|
isInheritable?: boolean;
|
|
position?: number;
|
|
}
|
|
|
|
export = AttributeMeta;
|