diff --git a/notNeededPackages.json b/notNeededPackages.json
index 2951767a75..d7530f3276 100644
--- a/notNeededPackages.json
+++ b/notNeededPackages.json
@@ -3360,6 +3360,12 @@
"sourceRepoURL": "https://github.com/stream-utils/raw-body",
"asOfVersion": "2.3.0"
},
+ {
+ "libraryName": "rc-progress",
+ "typingsPackageName": "rc-progress",
+ "sourceRepoURL": "http://github.com/react-component/progress",
+ "asOfVersion": "2.4.0"
+ },
{
"libraryName": "re2",
"typingsPackageName": "re2",
diff --git a/types/rc-progress/README.md b/types/rc-progress/README.md
deleted file mode 100644
index a28d0e1a3b..0000000000
--- a/types/rc-progress/README.md
+++ /dev/null
@@ -1,18 +0,0 @@
-# Installation
-
-```
-npm install --save @types/rc-progress`
-```
-
-# Summary
-
-This package contains type definitions for [rc-progress](https://github.com/react-component/progress).
-
-Additional Details
- * Last updated: Thu, 15 Nov 2018
- * Dependencies: react
- * Global values: none
-
-# Credits
-
-These definitions were written by Jussi Kinnula
diff --git a/types/rc-progress/index.d.ts b/types/rc-progress/index.d.ts
deleted file mode 100644
index e0318078c9..0000000000
--- a/types/rc-progress/index.d.ts
+++ /dev/null
@@ -1,42 +0,0 @@
-// Type definitions for rc-progress 2.2
-// Project: http://github.com/react-component/progress
-// Definitions by: Jussi Kinnula
-// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
-// TypeScript Version: 2.8
-
-import * as React from 'react';
-
-export interface CommonProps {
- className?: string;
- percent?: number | string;
- prefixCls?: string;
- strokeColor?: string;
- strokeLinecap?: 'butt' | 'square' | 'round';
- strokeWidth?: number | string;
- style?: React.CSSProperties[] | React.CSSProperties;
- trailColor?: string;
- trailWidth?: number | string;
-}
-
-export interface CircleProps extends CommonProps {
- gapDegree?: number;
- gapPosition?: 'top' | 'bottom' | 'left' | 'right';
-}
-
-export class Circle extends React.Component {
- prevTimeStamp?: number;
-
- getPathStyles(): {
- pathString: string;
- trailPathStyle: React.CSSProperties[] | React.CSSProperties;
- strokePathStyle: React.CSSProperties[] | React.CSSProperties;
- };
-}
-
-export interface LineProps extends CommonProps {
- prevTimeStamp?: number;
-}
-
-export class Line extends React.Component {
- path?: SVGPathElement;
-}
diff --git a/types/rc-progress/rc-progress-tests.tsx b/types/rc-progress/rc-progress-tests.tsx
deleted file mode 100644
index e1eabfae2f..0000000000
--- a/types/rc-progress/rc-progress-tests.tsx
+++ /dev/null
@@ -1,14 +0,0 @@
-import * as React from 'react';
-import * as ReactDOM from 'react-dom';
-import { Line, Circle } from 'rc-progress';
-
-const App = () => (
-
-
-
-
-);
-
-const element = document.createElement('div');
-document.body.appendChild(element);
-ReactDOM.render(, element);
diff --git a/types/rc-progress/tsconfig.json b/types/rc-progress/tsconfig.json
deleted file mode 100644
index e7ef670b66..0000000000
--- a/types/rc-progress/tsconfig.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "files": [
- "index.d.ts",
- "rc-progress-tests.tsx"
- ],
- "compilerOptions": {
- "module": "commonjs",
- "lib": [
- "es6",
- "dom"
- ],
- "noImplicitAny": true,
- "noImplicitThis": true,
- "strictNullChecks": true,
- "strictFunctionTypes": true,
- "baseUrl": "../",
- "typeRoots": [
- "../"
- ],
- "types": [],
- "noEmit": true,
- "forceConsistentCasingInFileNames": true,
- "jsx": "preserve"
- }
-}
diff --git a/types/rc-progress/tslint.json b/types/rc-progress/tslint.json
deleted file mode 100644
index b4b47a0378..0000000000
--- a/types/rc-progress/tslint.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "extends": "dtslint/dt.json"
-}