component-library-mustafa-akagunduz
Version:
Air Command System projesi için geliştirilmiş React component kütüphanesi
12 lines (11 loc) • 322 B
TypeScript
export interface DeleteModalProps {
isOpen: boolean;
onClose: () => void;
onDelete: () => void;
aircraftCallSign: string;
isMultipleSelection?: boolean;
aircraftCount?: number;
isLoading?: boolean;
t: (key: string) => string;
}
export declare const DeleteModal: React.FC<DeleteModalProps>;