Refactor #3911 - update .d.ts
parent
9985119c70
commit
a3bf5c4152
|
@ -71,6 +71,11 @@ export interface InlineMessageProps {
|
||||||
* @deprecated since v3.27.0. Use 'icon' slot.
|
* @deprecated since v3.27.0. Use 'icon' slot.
|
||||||
*/
|
*/
|
||||||
icon?: string | undefined;
|
icon?: string | undefined;
|
||||||
|
/**
|
||||||
|
* Uses to pass attributes to DOM elements inside the component.
|
||||||
|
* @type {InlineMessagePassThroughOptions}
|
||||||
|
*/
|
||||||
|
pt?: InlineMessagePassThroughOptions;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Defines valid slots in InlineMessage slots.
|
* Defines valid slots in InlineMessage slots.
|
||||||
|
|
|
@ -106,6 +106,11 @@ export interface MessageProps {
|
||||||
* Uses to pass all properties of the HTMLButtonElement to the close button.
|
* Uses to pass all properties of the HTMLButtonElement to the close button.
|
||||||
*/
|
*/
|
||||||
closeButtonProps?: ButtonHTMLAttributes | undefined;
|
closeButtonProps?: ButtonHTMLAttributes | undefined;
|
||||||
|
/**
|
||||||
|
* Uses to pass attributes to DOM elements inside the component.
|
||||||
|
* @type {MessagePassThroughOptions}
|
||||||
|
*/
|
||||||
|
pt?: MessagePassThroughOptions;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue