Skip to content
Sheetwrite

Sheetwrite / Documentation

CommentAnchor@sheetwrite/core

Document location to which a comment thread is attached.

Document location to which a comment thread is attached.

Variants 2

{
kind: "cell";
address: { sheet: string; row: number; col: number };
}
{ kind: "range"; range: Range }

Declaration

View full TypeScript declaration
export type CommentAnchor =
| {
kind: "cell";
address: {
sheet: string;
row: number;
col: number;
};
}
| {
kind: "range";
range: Range;
};