handle changed aria-expanded typing

This commit is contained in:
Damien Elmes 2021-09-28 11:27:23 +10:00
parent 6db52323dd
commit 899d0556e8

View file

@ -3,5 +3,5 @@
export interface DropdownProps {
dropdown: boolean;
"data-bs-toggle"?: string;
"aria-expanded"?: string;
"aria-expanded"?: boolean | "true" | "false";
}