@mikezimm/fps-library-v2
Version:
Library of reusable typescript/javascript functions, interfaces and constants
22 lines • 706 B
TypeScript
/// <reference types="react" />
export interface IFadePanelProps {
show: boolean;
refreshId: string;
content: string | JSX.Element;
styleProps?: IFadePanelStyleProps;
fadeSlider?: boolean;
fadeSliderLoc?: IFadeSliderPos;
blockClose?: boolean;
_hideBack(): void;
}
export interface IFadePanelWPProps {
constainerStyles?: string;
constainerClass?: string;
}
export interface IFadePanelStyleProps {
constainerStyles?: React.CSSProperties;
constainerClass?: string;
}
export type IFadeSliderPos = 'topLeft' | 'topRight' | 'bottomLeft' | 'bottomRight' | 'none';
export type IShowBack = 0 | 1 | 2;
//# sourceMappingURL=IFadePanelProps.d.ts.map