UNPKG

react-airplay

Version:
13 lines (12 loc) 612 B
import { ColorValue, ProcessedColorValue, ViewProps, ViewPropsIOS } from 'react-native'; declare type NativeAirplayButtonProps = ViewPropsIOS & ViewProps & { tintColor?: ProcessedColorValue | null; activeTintColor?: ProcessedColorValue | null; prioritizesVideoDevices?: boolean; }; export declare type AirplayButtonProps = Omit<NativeAirplayButtonProps, 'tintColor' | 'activeTintColor'> & { tintColor?: number | ColorValue; activeTintColor?: number | ColorValue; }; export declare const AirplayButton: ({ tintColor, activeTintColor, ...props }: AirplayButtonProps) => JSX.Element; export {};