From e0b01d3d034337e72b9a42198bce27d01df9c620 Mon Sep 17 00:00:00 2001 From: Mateusz Date: Sun, 12 Mar 2023 20:22:22 +0100 Subject: [PATCH] Update DOM Manipulation.md --- packages/documentation/copy/en/tutorials/DOM Manipulation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/documentation/copy/en/tutorials/DOM Manipulation.md b/packages/documentation/copy/en/tutorials/DOM Manipulation.md index fa15a8752732..4d649d86a217 100755 --- a/packages/documentation/copy/en/tutorials/DOM Manipulation.md +++ b/packages/documentation/copy/en/tutorials/DOM Manipulation.md @@ -16,7 +16,7 @@ Websites are made up of HTML and/or XML documents. These documents are static, t TypeScript is a typed superset of JavaScript, and it ships type definitions for the DOM API. These definitions are readily available in any default TypeScript project. Of the 20,000+ lines of definitions in _lib.dom.d.ts_, one stands out among the rest: `HTMLElement` . This type is the backbone for DOM manipulation with TypeScript. -> You can explore the source code for the [DOM type definitions](https://github.com/microsoft/TypeScript/blob/main/lib/lib.dom.d.ts) +> You can explore the source code for the [DOM type definitions](https://github.com/microsoft/TypeScript/blob/main/src/lib/dom.generated.d.ts) ## Basic Example