Using typeof for basic narrowing.
typeof price === 'number'
function formatPrice(price: number | string) { // TODO }