2021-04-15 15:59:52 +02:00
|
|
|
// Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
2021-04-09 18:59:57 +02:00
|
|
|
import type { ToolbarItem } from "./types";
|
2021-04-08 16:29:28 +02:00
|
|
|
|
|
|
|
export interface WithDropdownMenuProps {
|
2021-04-09 18:59:57 +02:00
|
|
|
button: ToolbarItem;
|
2021-04-08 16:29:28 +02:00
|
|
|
menuId: string;
|
|
|
|
}
|