Fieldset: .d.ts updated for toggleButtonProps

pull/3711/head
Tuğçe Küçükoğlu 2023-03-06 11:29:54 +03:00
parent fb048d6910
commit be462ac500
2 changed files with 4 additions and 5 deletions

View File

@ -21,7 +21,7 @@ const FieldsetProps = [
name: 'toggleButtonProps',
type: 'string',
default: 'null',
description: 'Uses to pass the custom value to read for the anchor inside the component.'
description: 'Uses to pass the custom value to read for the AnchorHTMLAttributes inside the component.'
}
];

View File

@ -7,7 +7,7 @@
* @module fieldset
*
*/
import { VNode } from 'vue';
import { AnchorHTMLAttributes, VNode } from 'vue';
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
/**
@ -44,10 +44,9 @@ export interface FieldsetProps {
*/
collapsed?: boolean | undefined;
/**
* Uses to pass the custom value to read for the anchor inside the component.
* @todo
* Uses to pass the custom value to read for the AnchorHTMLAttributes inside the component.
*/
toggleButtonProps?: object | undefined;
toggleButtonProps?: AnchorHTMLAttributes | undefined;
}
/**