Gathering detailed insights and metrics for @types/react-native-table-component
Gathering detailed insights and metrics for @types/react-native-table-component
Gathering detailed insights and metrics for @types/react-native-table-component
Gathering detailed insights and metrics for @types/react-native-table-component
The repository for high quality TypeScript type definitions.
npm install @types/react-native-table-component
Typescript
Module System
TypeScript (99.84%)
JavaScript (0.15%)
Shell (0.01%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
NOASSERTION License
50,062 Stars
89,770 Commits
30,431 Forks
640 Watchers
6 Branches
9,957 Contributors
Updated on Jul 19, 2025
Latest Version
1.2.8
Package Id
@types/react-native-table-component@1.2.8
Unpacked Size
7.36 kB
Size
1.94 kB
File Count
5
Published on
Dec 21, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
3
npm install --save @types/react-native-table-component
This package contains type definitions for react-native-table-component (https://github.com/Gil2015/react-native-table-component#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-table-component.
1import { Component, ReactNode } from "react"; 2import { StyleProp, TextStyle, ViewStyle } from "react-native"; 3 4// cell.js 5 6export interface CellProps { 7 data?: any; 8 width?: number | undefined; 9 height?: number | undefined; 10 flex?: number | undefined; 11 style?: StyleProp<ViewStyle> | undefined; 12 textStyle?: StyleProp<TextStyle> | undefined; 13 borderStyle?: StyleProp<ViewStyle> | undefined; 14} 15 16export class Cell extends Component<CellProps> {} 17 18// cols.js 19 20export interface ColProps { 21 data?: any[] | undefined; 22 style?: StyleProp<ViewStyle> | undefined; 23 width?: number | undefined; 24 heightArr?: number[] | undefined; 25 textStyle?: StyleProp<TextStyle> | undefined; 26} 27 28export class Col extends Component<ColProps> {} 29 30export interface ColsProps { 31 data?: any[] | undefined; 32 style?: StyleProp<ViewStyle> | undefined; 33 widthArr?: number[] | undefined; 34 heightArr?: number[] | undefined; 35 flexArr?: number[] | undefined; 36 textStyle?: StyleProp<TextStyle> | undefined; 37} 38 39export class Cols extends Component<ColsProps> {} 40 41// rows.js 42 43export interface RowProps { 44 data?: any[] | undefined; 45 style?: StyleProp<ViewStyle> | undefined; 46 widthArr?: number[] | undefined; 47 height?: number | undefined; 48 flexArr?: number[] | undefined; 49 textStyle?: StyleProp<TextStyle> | undefined; 50} 51 52export class Row extends Component<RowProps> {} 53 54export interface RowsProps { 55 data?: any[][] | undefined; 56 style?: StyleProp<ViewStyle> | undefined; 57 widthArr?: number[] | undefined; 58 heightArr?: number[] | undefined; 59 flexArr?: number[] | undefined; 60 textStyle?: StyleProp<TextStyle> | undefined; 61} 62 63export class Rows extends Component<RowsProps> {} 64 65// table.js 66 67export interface TableProps { 68 children?: ReactNode; 69 style?: StyleProp<ViewStyle> | undefined; 70 borderStyle?: StyleProp<ViewStyle> | undefined; 71} 72 73export class Table extends Component<TableProps> { 74 _renderChildren(props: TableProps): ReactNode; 75} 76 77export interface TableWrapperProps { 78 children?: ReactNode; 79 style?: StyleProp<ViewStyle> | undefined; 80 borderStyle?: StyleProp<ViewStyle> | undefined; 81} 82 83export class TableWrapper extends Component<TableWrapperProps> { 84 _renderChildren(props: TableWrapperProps): ReactNode; 85} 86
These definitions were written by David Cole.
No vulnerabilities found.
Reason
30 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Reason
security policy file detected
Details
Reason
no dangerous workflow patterns detected
Reason
0 existing vulnerabilities detected
Reason
no binaries found in the repo
Reason
Found 27/30 approved changesets -- score normalized to 9
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 8
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Score
Last Scanned on 2025-07-14
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More