Update DataView.d.ts

pull/4016/head
Tuğçe Küçükoğlu 2023-06-02 09:46:02 +03:00
parent e90b4d00cd
commit 19fd8d97c1
1 changed files with 4 additions and 4 deletions

View File

@ -65,6 +65,10 @@ export interface DataViewPassThroughOptions {
* Uses to pass attributes to the content's DOM element.
*/
content?: DataViewPassThroughOptionType;
/**
* Uses to pass attributes to the grid's DOM element.
*/
grid?: DataViewPassThroughOptionType;
/**
* Uses to pass attributes to the column's DOM element.
*/
@ -77,10 +81,6 @@ export interface DataViewPassThroughOptions {
* Uses to pass attributes to the footer's DOM element.
*/
footer?: DataViewPassThroughOptionType;
/**
* Uses to pass attributes to the grid's DOM element.
*/
grid?: DataViewPassThroughOptionType;
}
/**