Skip to content
This repository was archived by the owner on Dec 6, 2024. It is now read-only.

Commit 62f780c

Browse files
authored
Merge pull request #134 from MasterOdin/chore-types
Update types definition
2 parents 5416430 + 631ec26 commit 62f780c

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

index.d.ts

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
11
import { Component, CSSProperties } from 'react';
22
import { Middleware, Reducer, Action } from 'redux';
33

4+
export const DEFAULT_SCOPE: string;
5+
export const HIDE: string;
6+
export const SHOW: string;
7+
export const RESET: string;
8+
49
export interface LoadingBarContainerProps {
5-
scope?: string
6-
style?: CSSProperties;
710
className?: string;
8-
actions?: Object;
9-
updateTime?: number;
11+
direction?: string;
1012
maxProgress?: number;
1113
progressIncrease?: number;
14+
scope?: string;
1215
showFastActions?: boolean;
16+
style?: CSSProperties;
17+
updateTime?: number;
1318
}
1419
export default class LoadingBarContainer extends Component<LoadingBarContainerProps, {}> {}
1520

0 commit comments

Comments
 (0)