@livetv-app/tvguide
Version:
An Android TV Live Channels-like Electronic Programme Guide for React DOM and React Native applications.
31 lines (30 loc) • 757 B
TypeScript
import React = require('react');
import type { DebugViewProps } from './debug.js';
export { DebugViewProps };
declare const DebugView: React.MemoExoticComponent<(props: DebugViewProps) => JSX.Element>;
export default DebugView;
export declare const styles: {
scroller: {
backgroundColor: string;
borderRadius: number;
marginBottom: number;
marginRight: number;
height: number;
};
container: {
paddingHorizontal: number;
paddingVertical: number;
flex: number;
};
debugText: {
color: string;
fontSize: number;
};
debugButtons: {
flexDirection: "row";
marginTop: number;
};
debugButton: {
marginRight: number;
};
};