-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
DominicGBauer
committed
Aug 28, 2024
1 parent
cded655
commit e0e8dcb
Showing
3 changed files
with
64 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
import { ColumnsType } from './Column'; | ||
import { Table } from './Table'; | ||
|
||
/* | ||
/** | ||
Generate a new table from the columns and indexes | ||
@deprecated You should use {@link Table} instead as it now allows TableV2 syntax. | ||
This will be removed in the next major release. | ||
*/ | ||
export class TableV2<Columns extends ColumnsType = ColumnsType> extends Table<Columns> {} |