UNPKG

@livetv-app/tvguide

Version:

An Android TV Live Channels-like Electronic Programme Guide for React DOM and React Native applications.

61 lines (60 loc) 1.35 kB
import React = require('react'); import { Programme } from '../types'; export interface ProgrammeRowProps { programme: Programme; first?: boolean; tvPreferredFocus?: boolean; onPress?: () => void; } declare function ProgrammeRow(props: ProgrammeRowProps): JSX.Element; declare const _default: React.MemoExoticComponent<typeof ProgrammeRow>; export default _default; export declare const styles: { row: { borderTopColor: string; }; rowDark: { borderTopColor: string; }; rowNotFirst: { borderTopWidth: number; }; container: { flexDirection: "row"; }; icon: { width: number; marginLeft: number; justifyContent: "center"; }; detail: { flex: number; paddingHorizontal: number; paddingVertical: number; minHeight: number; flexDirection: "column"; justifyContent: "center"; }; headerText: { color: string; marginBottom: number; fontSize: number; }; headerTextDark: { color: string; }; timeText: { color: string; fontSize: number; }; timeTextDark: { color: string; }; descriptionText: { color: string; fontSize: number; }; descriptionTextDark: { color: string; }; };