Installation
npm install --save @types/react-native-table-component
Summary
This package contains type definitions for react-native-table-component (https://github.com/Gil2015/react-native-table-component#readme).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-table-component.
import { Component, ReactNode } from "react";
import { StyleProp, TextStyle, ViewStyle } from "react-native";
export interface CellProps {
data?: any;
width?: number | undefined;
height?: number | undefined;
flex?: number | undefined;
style?: StyleProp<ViewStyle> | undefined;
textStyle?: StyleProp<TextStyle> | undefined;
borderStyle?: StyleProp<ViewStyle> | undefined;
}
export class Cell extends Component<CellProps> {}
export interface ColProps {
data?: any[] | undefined;
style?: StyleProp<ViewStyle> | undefined;
width?: number | undefined;
heightArr?: number[] | undefined;
textStyle?: StyleProp<TextStyle> | undefined;
}
export class Col extends Component<ColProps> {}
export interface ColsProps {
data?: any[] | undefined;
style?: StyleProp<ViewStyle> | undefined;
widthArr?: number[] | undefined;
heightArr?: number[] | undefined;
flexArr?: number[] | undefined;
textStyle?: StyleProp<TextStyle> | undefined;
}
export class Cols extends Component<ColsProps> {}
export interface RowProps {
data?: any[] | undefined;
style?: StyleProp<ViewStyle> | undefined;
widthArr?: number[] | undefined;
height?: number | undefined;
flexArr?: number[] | undefined;
textStyle?: StyleProp<TextStyle> | undefined;
}
export class Row extends Component<RowProps> {}
export interface RowsProps {
data?: any[][] | undefined;
style?: StyleProp<ViewStyle> | undefined;
widthArr?: number[] | undefined;
heightArr?: number[] | undefined;
flexArr?: number[] | undefined;
textStyle?: StyleProp<TextStyle> | undefined;
}
export class Rows extends Component<RowsProps> {}
export interface TableProps {
children?: ReactNode;
style?: StyleProp<ViewStyle> | undefined;
borderStyle?: StyleProp<ViewStyle> | undefined;
}
export class Table extends Component<TableProps> {
_renderChildren(props: TableProps): ReactNode;
}
export interface TableWrapperProps {
children?: ReactNode;
style?: StyleProp<ViewStyle> | undefined;
borderStyle?: StyleProp<ViewStyle> | undefined;
}
export class TableWrapper extends Component<TableWrapperProps> {
_renderChildren(props: TableWrapperProps): ReactNode;
}
Additional Details
Credits
These definitions were written by David Cole.