chore: loosen type restrictions

This commit is contained in:
mathuo 2025-07-16 22:45:46 +01:00
parent ac6154196e
commit 782a61bf69
No known key found for this signature in database
GPG Key ID: C6EEDEFD6CA07281

View File

@ -19,7 +19,7 @@ function useTitle(api: DockviewPanelApi): string | undefined {
}
export type IDockviewDefaultTabProps = IDockviewPanelHeaderProps &
React.DOMAttributes<HTMLDivElement> & {
React.HtmlHTMLAttributes<HTMLDivElement> & {
hideClose?: boolean;
closeActionOverride?: () => void;
};