/* istanbul ignore file */
export type AnyRecord = Record<string, any>;

export type CardType =
  | "VISA"
  | "Mastercard"
  | "AmericanExpress"
  | "JCB"
  | "Mir"
  | "UnionPay"
  | "DinersClub"
  | "Unknown";
