handle changed aria-expanded typing

This commit is contained in:
Damien Elmes 2021-09-28 11:27:23 +10:00
parent d44b49294b
commit 604247482d

View file

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