Note
The Note interface defines a structure to store extra information in a DrawingItem. A DrawingItem can have one or multiple Notes.
interface Note {
/** The name of the note. */
name: string;
/** The content of the note, can be of any type. */
content: any;
}
name
The name of the note.
content
The content of the note, can be of any type.