UNPKG

224 BTypeScriptView Raw
1export interface SegmentedControlPropsType {
2 tintColor?: string;
3 disabled?: boolean;
4 selectedIndex?: number;
5 values?: string[];
6 onChange?: (e: any) => void;
7 onValueChange?: (value: string) => void;
8}