Skip to content

Commit

Permalink
sheet: implement newProxy
Browse files Browse the repository at this point in the history
  • Loading branch information
hbbio committed Jan 22, 2024
1 parent 9e2c759 commit bc3a9de
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/sheet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,14 @@ export class Sheet {
return { count: this[count], size: this[size] };
}

/**
* newProxy creates a new proxy for this sheet.
* @returns
*/
newProxy() {
return new SheetProxy(this);
}

dotGraphWithTitle(title?: string) {
return this.g.toDot(
this._cell_types(),
Expand Down

0 comments on commit bc3a9de

Please sign in to comment.