Skip to content

Commit

Permalink
Merge pull request #134 from MasterOdin/chore-types
Browse files Browse the repository at this point in the history
Update types definition
  • Loading branch information
mironov authored Jan 3, 2024
2 parents 5416430 + 631ec26 commit 62f780c
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
import { Component, CSSProperties } from 'react';
import { Middleware, Reducer, Action } from 'redux';

export const DEFAULT_SCOPE: string;
export const HIDE: string;
export const SHOW: string;
export const RESET: string;

export interface LoadingBarContainerProps {
scope?: string
style?: CSSProperties;
className?: string;
actions?: Object;
updateTime?: number;
direction?: string;
maxProgress?: number;
progressIncrease?: number;
scope?: string;
showFastActions?: boolean;
style?: CSSProperties;
updateTime?: number;
}
export default class LoadingBarContainer extends Component<LoadingBarContainerProps, {}> {}

Expand Down

0 comments on commit 62f780c

Please sign in to comment.