From 6b74c52710b7b5434129de32ae61922917220c18 Mon Sep 17 00:00:00 2001 From: Luis Cadillo Date: Fri, 10 Jun 2022 12:26:32 -0500 Subject: [PATCH] FIX: Add hyphen after __Local Declaration__ --- content/docs/static-type-checking.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/content/docs/static-type-checking.md b/content/docs/static-type-checking.md index 41af5570e73..8d7756801b6 100644 --- a/content/docs/static-type-checking.md +++ b/content/docs/static-type-checking.md @@ -300,8 +300,7 @@ yarn add --dev @types/react npm i --save-dev @types/react ``` -__Local Declarations__ -Sometimes the package that you want to use doesn't bundle declarations nor is it available on DefinitelyTyped. In that case, we can have a local declaration file. To do this, create a `declarations.d.ts` file in the root of your source directory. A simple declaration could look like this: +__Local Declarations__ - Sometimes the package that you want to use doesn't bundle declarations nor is it available on DefinitelyTyped. In that case, we can have a local declaration file. To do this, create a `declarations.d.ts` file in the root of your source directory. A simple declaration could look like this: ```typescript declare module 'querystring' {