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