**TypeScript Version:** 3.9.0-dev.20200212 **Search Terms:** NamespaceExport width **Code** As seen on ts-ast-viewer.com with typescript@next  ```ts export * as ns from "test"; ``` **Expected behavior:** `* as ns` width This would make it consistent with `NamespaceImport`:  **Actual behavior:** `ns` width (identifier only)