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

10 lines
184 B
TypeScript

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