export interface ITinyBar<T> {
    data: T[];
    width: number;
    height: number;
    dataKey: string;
    isLoading?: boolean;
}
