Add :disabled pseudoclass to Style interface. (#35979)

The property is missing.  See: https://github.com/stripe/react-stripe-elements/issues/250 

The property is documented here: https://stripe.com/docs/stripe-js/reference#element-options
This commit is contained in:
Kevin Wang 2019-06-11 14:35:58 -07:00 committed by Ron Buckton
parent 4084c37e80
commit 26fec8242e

View File

@ -483,6 +483,7 @@ declare namespace stripe {
'::placeholder'?: StyleOptions;
'::selection'?: StyleOptions;
':-webkit-autofill'?: StyleOptions;
':disabled'?: StyleOptions;
'::-ms-clear'?: StyleOptions;
}