Fixed #4231 - Update d.ts

This commit is contained in:
mertsincan 2023-08-02 17:07:22 +03:00
parent 5d8c790836
commit 6d3d420189
27 changed files with 110 additions and 55 deletions

View file

@ -7,13 +7,15 @@
* @module picklist
*
*/
import { ButtonHTMLAttributes, HTMLAttributes, VNode } from 'vue';
import { ButtonHTMLAttributes, HTMLAttributes, TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { ButtonPassThroughOptionType } from '../button';
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
export declare type PickListPassThroughOptionType = PickListPassThroughAttributes | ((options: PickListPassThroughMethodOptions) => PickListPassThroughAttributes | string) | string | null | undefined;
export declare type PickListPassThroughTransitionType = TransitionProps | ((options: PickListPassThroughMethodOptions) => TransitionProps) | undefined;
/**
* Custom passthrough(pt) option method.
*/
@ -203,7 +205,7 @@ export interface PickListPassThroughOptions {
/**
* Used to control Vue Transition API.
*/
transition?: any;
transition?: PickListPassThroughTransitionType;
}
/**