You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bazarr/frontend/src/components/modals/subtitle-tools/types.d.ts

10 lines
253 B

import { ModalComponent } from "@/modules/modals/WithModal";
import { IconDefinition } from "@fortawesome/free-solid-svg-icons";
export interface ToolOptions {
key: string;
icon: IconDefinition;
name: string;
modal?: ModalComponent<unknown>;
}