Propiedad de interfaz TypeScript Tipos múltiples

interface Foo {
    bar:string|boolean;
}
Defiant Dove