documentation.js supports Flow union type but doesn't seem to support intersection. Any reason to not supporting it ? ```js export type Foo = {a: number} & {b: number}; ``` Should generate : ``` Type: ({a: number} & {b: number}); ``` But documentation.js doesn't generate anything.