From 48bae03a56bb6599bce12af23d9bbe0fc2141ce1 Mon Sep 17 00:00:00 2001 From: Rob Palmer Date: Sun, 15 Feb 2026 15:44:14 +0000 Subject: [PATCH] docs: Remove incorrect mention of `module` Node/Armaro has never supported `module`-keyword namespaces. Even with `transform-types` on. This removes the incorrect mention. --- doc/api/typescript.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/api/typescript.md b/doc/api/typescript.md index d2399f17add65d..8875d1f7771e01 100644 --- a/doc/api/typescript.md +++ b/doc/api/typescript.md @@ -146,11 +146,10 @@ The most prominent features that require transformation are: * `Enum` declarations * `namespace` with runtime code -* legacy `module` with runtime code * parameter properties * import aliases -`namespaces` and `module` that do not contain runtime code are supported. +`namespace`s that do not contain runtime code are supported. This example will work correctly: ```ts