index.d.ts 444 B

12345678910111213
  1. import InternalCard from './Card';
  2. import Grid from './Grid';
  3. import Meta from './Meta';
  4. export type { CardProps, CardTabListType } from './Card';
  5. export type { CardGridProps } from './Grid';
  6. export type { CardMetaProps } from './Meta';
  7. type InternalCardType = typeof InternalCard;
  8. export interface CardInterface extends InternalCardType {
  9. Grid: typeof Grid;
  10. Meta: typeof Meta;
  11. }
  12. declare const Card: CardInterface;
  13. export default Card;