7 lines
133 B
TypeScript
7 lines
133 B
TypeScript
import type { ToolbarItem } from "./types";
|
|
|
|
export interface WithDropdownMenuProps {
|
|
button: ToolbarItem;
|
|
menuId: string;
|
|
}
|