Gathering detailed insights and metrics for @types/pretty-proptypes
Gathering detailed insights and metrics for @types/pretty-proptypes
Gathering detailed insights and metrics for @types/pretty-proptypes
Gathering detailed insights and metrics for @types/pretty-proptypes
The repository for high quality TypeScript type definitions.
npm install @types/pretty-proptypes
Typescript
Module System
66.8
Supply Chain
92.2
Quality
75.4
Maintenance
100
Vulnerability
100
License
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,030 Stars
89,737 Commits
30,433 Forks
640 Watchers
6 Branches
9,957 Contributors
Updated on Jul 13, 2025
Latest Version
1.1.4
Package Id
@types/pretty-proptypes@1.1.4
Unpacked Size
5.63 kB
Size
1.96 kB
File Count
5
Published on
Nov 07, 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
1
npm install --save @types/pretty-proptypes
This package contains type definitions for pretty-proptypes (https://github.com/atlassian/extract-react-types#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/pretty-proptypes.
1import * as React from "react"; 2 3export interface Components { 4 Indent: React.ComponentType<any>; 5 Outline: React.ComponentType<any>; 6 Required: React.ComponentType<any>; 7 Type: React.ComponentType<any>; 8 StringType: React.ComponentType<any>; 9 TypeMeta: React.ComponentType<any>; 10 Description: React.ComponentType<any>; 11 Button: React.ComponentType<any>; 12 FunctionType: React.ComponentType<any>; 13} 14 15export const components: Components; 16 17export type Kind = any; 18 19export interface CommonProps { 20 defaultValue?: string | undefined; 21 description?: string | undefined; 22 required: boolean; 23 name: string; 24 typeValue: Kind; 25 type: string; 26 shouldCollapse?: boolean | undefined; 27 components: Components; 28} 29 30export interface PropProps extends CommonProps { 31 shapeComponent: React.ComponentType<CommonProps>; 32} 33 34export class Prop extends React.Component<PropProps> {} 35 36export interface Obj { 37 kind: "object"; 38 members: any[]; 39} 40 41export interface Gen { 42 kind: "generic"; 43 value: any; 44} 45 46export interface Inter { 47 kind: "intersection"; 48 types: Array<Obj | Gen>; 49} 50 51export interface DynamicPropsProps { 52 components?: Partial<Components> | undefined; 53 heading?: string | undefined; 54 shouldCollapseProps?: boolean | undefined; 55 overrides?: { 56 [key: string]: React.ComponentType<CommonProps>; 57 } | undefined; 58 props: { 59 component?: Obj | Inter | undefined; 60 }; 61} 62 63export default class Props extends React.Component<DynamicPropsProps> {} 64
These definitions were written by Nathan Bierema.
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-07
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