We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 75691a8 + f366536 commit 6535631Copy full SHA for 6535631
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "react-promise-tracker",
3
- "version": "2.0.0",
+ "version": "2.0.1",
4
"description": "Simple React Promise tracker Hook/HOC helper to add loading spinner indicators",
5
"keywords": [
6
"react",
src/index.d.ts
@@ -17,8 +17,8 @@ export function trackPromise(promise: Promise<any>): Promise<any>;
17
*/
18
19
interface Config {
20
- area: string;
21
- delay: number;
+ area?: string;
+ delay?: number;
22
}
23
24
/**
0 commit comments