UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

14 lines (13 loc) 395 B
import type { CardDesign } from './CardDesigns'; import { CardType, ProductType, BankAxeptType } from './Types'; export type CardProduct = { productCode: string; productName: string; displayName: string; cardDesign: CardDesign; productType: ProductType; cardType: CardType; bankAxept: BankAxeptType; }; declare const cardData: CardProduct[]; export default cardData;