@mikezimm/fps-library-v2
Version:
Library of reusable typescript/javascript functions, interfaces and constants
22 lines • 684 B
TypeScript
import * as React from 'react';
export interface ISideGlanceProps {
containerStyles?: React.CSSProperties;
collapsedWidth?: number;
expandedWidth?: number;
fadeStart?: number;
title?: string;
children: React.ReactNode;
initiallyCollapsed?: boolean;
roundedBorder?: boolean;
}
interface ISideGlanceState {
collapsed: boolean;
}
export declare class SideGlance extends React.Component<ISideGlanceProps, ISideGlanceState> {
static defaultProps: Partial<ISideGlanceProps>;
constructor(props: ISideGlanceProps);
private toggleCollapse;
render(): React.ReactNode;
}
export {};
//# sourceMappingURL=SideGlance.d.ts.map