ponchojs
Version:
Poncho
23 lines (22 loc) • 613 B
TypeScript
/// <reference types="react" />
import { Options } from '../utils/TSComponent';
interface CardOptions {
links?: 'full' | 'small' | 'none';
color?: string;
hasChart: string;
explicitSign?: boolean;
units?: string;
hasFrame?: boolean;
hasColorBar?: boolean;
collapse?: string;
apiBaseUrl?: string;
decimals?: number;
isPercentage?: boolean;
}
interface Props {
options: {
serieId: string;
} & Partial<CardOptions & Options>;
}
export declare const Card: import("react").MemoExoticComponent<(props: Props) => JSX.Element>;
export {};