Refactor #4231 - For DataTable

This commit is contained in:
mertsincan 2023-08-02 15:00:36 +03:00
parent b371f0e248
commit 3c81f59ab2
2 changed files with 6 additions and 2 deletions

View file

@ -622,7 +622,7 @@ export interface DataTablePassThroughOptions {
*/
tfoot?: DataTablePassThroughOptionType;
/**
* Used to pass attributes to the footerr ow's DOM element.
* Used to pass attributes to the footer row's DOM element.
*/
footerRow?: DataTablePassThroughOptionType;
/**
@ -654,6 +654,10 @@ export interface DataTablePassThroughOptions {
* @see {@link BaseComponent.ComponentHooks}
*/
hooks?: ComponentHooks;
/**
* Used to control Vue Transition API.
*/
transition?: any;
}
/**