Skip to content

Commit a21a9b3

Browse files
fix: remove duplicate incomplete highlightMin method in style.ts
Remove duplicate/partial method definition that was never closed, causing TypeScript syntax errors in all subsequent class methods. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 2aca3bc commit a21a9b3

1 file changed

Lines changed: 0 additions & 8 deletions

File tree

src/stats/style.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -718,14 +718,6 @@ export class Styler {
718718
return this;
719719
}
720720

721-
/**
722-
* Highlight the minimum value in each column (axis=0), row (axis=1), or table (null).
723-
*/
724-
highlightMin(options: HighlightOptions = {}): this {
725-
const { color = "yellow", subset = null, axis = 0 } = options;
726-
const colNames = this._colNames;
727-
const colIndices = resolveColIndices(colNames, subset);
728-
729721
/**
730722
* Highlight the minimum value in each column (axis=0), row (axis=1), or table (null).
731723
*/

0 commit comments

Comments
 (0)