import { CardAction } from './card-action.mjs'; import { CardImage } from './card-image.mjs'; /** * A basic card */ type BasicCard = { /** * Title of the card */ title?: string; /** * Subtitle of the card */ subtitle?: string; /** * Text for the card */ text?: string; /** * Array of images for the card */ images?: CardImage[]; /** * Set of actions applicable to the current card */ buttons?: CardAction[]; /** * This action will be activated when user taps on the card itself */ tap?: CardAction; }; export type { BasicCard };