Files
Notes/src/services/meta/attribute_meta.ts
2024-04-03 22:46:14 +03:00

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;