Update .d.ts files

This commit is contained in:
Tuğçe Küçükoğlu 2023-04-28 19:05:48 +03:00
parent 01031b79d1
commit 3602a76866
2 changed files with 7 additions and 1 deletions

View file

@ -9,6 +9,7 @@
*/
import { ButtonHTMLAttributes, VNode } from 'vue';
import { MenuItem } from '../menuitem';
import { TieredMenuPassThroughOptions } from '../tieredmenu';
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
export declare type SplitButtonPassThroughOptionType = SplitButtonPassThroughAttributes | ((options: SplitButtonPassThroughMethodOptions) => SplitButtonPassThroughAttributes) | null | undefined;
@ -48,8 +49,9 @@ export interface SplitButtonPassThroughOptions {
menuButtonIcon?: SplitButtonPassThroughOptionType;
/**
* Uses to pass attributes to the menu's DOM element.
* @see {@link TieredMenuPassThroughOptions}
*/
menu?: SplitButtonPassThroughOptionType;
menu?: TieredMenuPassThroughOptions;
}
/**