mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Fixed #4231 - Update d.ts
This commit is contained in:
parent
5d8c790836
commit
6d3d420189
27 changed files with 110 additions and 55 deletions
6
components/lib/datatable/DataTable.d.ts
vendored
6
components/lib/datatable/DataTable.d.ts
vendored
|
@ -7,7 +7,7 @@
|
|||
* @module datatable
|
||||
*
|
||||
*/
|
||||
import { InputHTMLAttributes, TableHTMLAttributes, VNode } from 'vue';
|
||||
import { InputHTMLAttributes, TableHTMLAttributes, TransitionProps, VNode } from 'vue';
|
||||
import { ComponentHooks } from '../basecomponent';
|
||||
import { ColumnPassThroughOptionType } from '../column';
|
||||
import { ColumnGroupPassThroughOptionType } from '../columngroup';
|
||||
|
@ -18,6 +18,8 @@ import { VirtualScrollerPassThroughOptionType, VirtualScrollerProps } from '../v
|
|||
|
||||
export declare type DataTablePassThroughOptionType = DataTablePassThroughAttributes | ((options: DataTablePassThroughMethodOptions) => DataTablePassThroughAttributes | string) | string | null | undefined;
|
||||
|
||||
export declare type DataTablePassThroughTransitionType = TransitionProps | ((options: DataTablePassThroughMethodOptions) => TransitionProps) | undefined;
|
||||
|
||||
/**
|
||||
* Custom passthrough(pt) option method.
|
||||
*/
|
||||
|
@ -657,7 +659,7 @@ export interface DataTablePassThroughOptions {
|
|||
/**
|
||||
* Used to control Vue Transition API.
|
||||
*/
|
||||
transition?: any;
|
||||
transition?: DataTablePassThroughTransitionType;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue