interface NoteModel {
    content: string;
    createdAt: number;
    history: HistoryEntry[];
    id: bigint;
    locked: boolean;
    owner: string;
    tags: string[];
    title: string;
    updatedAt: number;
    users: [string, PrincipalRule][];
}

Properties

content: string
createdAt: number
history: HistoryEntry[]
id: bigint
locked: boolean
owner: string
tags: string[]
title: string
updatedAt: number
users: [string, PrincipalRule][]