From 631ec26fc27028aead01b479aa82115da7ac283b Mon Sep 17 00:00:00 2001 From: Matthew Peveler Date: Tue, 2 Jan 2024 12:57:31 -0500 Subject: [PATCH] Update types definition Signed-off-by: Matthew Peveler --- index.d.ts | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/index.d.ts b/index.d.ts index 19209eb..78b2051 100644 --- a/index.d.ts +++ b/index.d.ts @@ -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 {}