mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 00:36:38 -04:00
6 lines
171 B
TypeScript
6 lines
171 B
TypeScript
import type { DynamicSvelteComponent } from "sveltelib/dynamicComponent";
|
|
|
|
export interface DropdownMenuProps {
|
|
id: string;
|
|
menuItems: DynamicSvelteComponent[];
|
|
}
|