UNPKG

ngx-payment-inputs

Version:

A set of Angular Directives to validate and format credit card inputs.

13 lines (12 loc) 242 B
/** * Model to build a card type list */ export interface CardTypesModel { displayName: string; type: string; format: RegExp; startPattern: RegExp; gaps: number[]; lengths: number[]; code: Record<string, any>; }