@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
15 lines (14 loc) • 482 B
TypeScript
import { ChangeEventHandler } from "react";
import { GenModels } from "@docsvision/webclient/Generated/DocsVision.WebClient.Models";
export interface IRadioButtonProps {
tab: number;
checked: boolean;
onChange: ChangeEventHandler<HTMLInputElement>;
value: GenModels.ButtonPositions;
}
export declare function ButtonPositionsSelectionRadioButton({ tab, checked, onChange, value }: {
tab: any;
checked: any;
onChange: any;
value: any;
}): JSX.Element;