Union types
function processPayment(method) {
// ...
}function processPayment(method: Cash | PayPal | CreditCard) {
// ...
}type PaymentMethod = Cash | PayPal | CreditCard;
function processPayment(method: PaymentMethod) {
// ...
}Last updated