/** * This statement exports all of the named exports from the 'cardBank' module. * This allows other modules to import and use the named exports from 'cardBank' * without having to import them individually. */ export * from './cardBank'; /** * This module exports all functions from the checkCardNumber module. */ export * from './checkCardNumber'; export * from './cardNumberDeepCheck'; export * from './Iban';