UNPKG

id-components

Version:
15 lines (14 loc) 315 B
import * as React from 'react'; interface IEndpoint { url: string; name: string; } interface IEndpoints extends Array<IEndpoint> { } interface IKpiCardList { endpoints: IEndpoints; payload: any; userToken: string; } declare const KpiCardList: React.FC<IKpiCardList>; export default KpiCardList;