box-ui-elements
Version:
Box UI Elements
16 lines (15 loc) • 454 B
TypeScript
import { GraphData, ResponseError } from '../../features/content-insights/types';
import './SidebarContentInsights.scss';
export interface ContentInsights {
error?: ResponseError;
graphData: GraphData;
isLoading: boolean;
previousPeriodCount: number;
totalCount: number;
}
export interface Props {
contentInsights?: ContentInsights;
onContentInsightsClick?: () => void;
}
declare const _default: any;
export default _default;