type FooOrBar = { value: number; } | { name: string; } if ('value' in fooOrBar) { // ... } else { // ... }