diff --git a/src/types/elements/options.ts b/src/types/elements/options.ts index 7535ca90..9e047d57 100644 --- a/src/types/elements/options.ts +++ b/src/types/elements/options.ts @@ -31,6 +31,10 @@ interface SanitizedElementOptions { iconPosition?: string; cardBrand?: string; autoComplete?: string; + value?: + | CardElementValue<'static'> + | CardExpirationDateValue<'static'> + | string; } type ElementOptions = ElementInternalOptions & SanitizedElementOptions;