@jsfkit/types
    Preparing search index...

    Type Alias Note

    An annotation associated with a cell.

    There is a maximum of one note per cell, and there is no way to reply to a note. For cell annotations with replies, see ThreadedComment and Worksheet.comments.

    type Note = {
        author: string;
        ref: CellId;
        text: string;
    }
    Index

    Properties

    Properties

    author: string

    Name of the person who originally made this note.

    ref: CellId

    Cell to which the note is attached (e.g. A1, E24).

    text: string

    Body text of the note.