Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
severo committed Jan 22, 2025
1 parent 28a4256 commit 29ccfde
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ OrderBy is defined as:

```typescript
interface OrderBy {
column: string; // column name
direction?: "ascending"; // sort direction - only ascending is supported
column: string // column name
direction?: "ascending" // sort direction - only ascending is supported
}
```

Expand All @@ -113,10 +113,10 @@ Selection is defined as:
```typescript
interface Selection {
ranges: Array<{
start: number; // inclusive lower limit, positive integer
end: number; // exclusive upper limit, positive integer, strictly greater than start (no zero-length ranges).
start: number // inclusive lower limit, positive integer
end: number // exclusive upper limit, positive integer, strictly greater than start (no zero-length ranges).
}>; // the rows selection is an array of row index ranges (0-based). The values are indexes of the virtual table (sorted rows), and thus depend on the order.
anchor?: number; // anchor row used as a reference for shift+click selection. It's a virtual table index (sorted), and thus depends on the order.
anchor?: number // anchor row used as a reference for shift+click selection. It's a virtual table index (sorted), and thus depends on the order.
}
```

Expand Down

0 comments on commit 29ccfde

Please sign in to comment.