@livetv-app/tvguide
Version:
An Android TV Live Channels-like Electronic Programme Guide for React DOM and React Native applications.
38 lines (37 loc) • 967 B
TypeScript
import React = require('react');
import type { TimeCellProps, TimeListProps, TimeProps } from './header.js';
export declare const TimeCell: React.MemoExoticComponent<(props: TimeCellProps) => JSX.Element>;
export declare function Time(props: TimeProps): JSX.Element;
export declare const TimeList: React.MemoExoticComponent<(props: TimeListProps) => JSX.Element>;
export declare const styles: {
timeHeader: {
overflow: "hidden";
};
main: {};
mainText: {
color: string;
fontSize: number;
};
mainTextNotToday: {
color: string;
};
timeRow: {
flex: number;
};
time: {
width: number;
paddingLeft: number;
paddingRight: number;
};
timeText: {
color: string;
fontSize: number;
};
nowIndicator: {
width: number;
height: number;
marginTop: number;
marginLeft: number;
borderRadius: number;
};
};