Anki/ts/editor-toolbar/DropdownItem.d.ts
2021-04-15 13:09:50 +02:00

9 lines
183 B
TypeScript

export interface DropdownItemProps {
id?: string;
className?: string;
title: string;
onClick: (event: MouseEvent) => void;
label: string;
endLabel: string;
}