mirror of
https://github.com/ankitects/anki.git
synced 2025-11-09 14:17:13 -05:00
6 lines
130 B
TypeScript
6 lines
130 B
TypeScript
import type { ToolbarItem } from "./types";
|
|
|
|
export interface DropdownMenuProps {
|
|
id: string;
|
|
menuItems: ToolbarItem[];
|
|
}
|