From 39134f5003c9afb7bed427376db566ff116cc487 Mon Sep 17 00:00:00 2001 From: jmbutler27 Date: Thu, 18 Jul 2024 16:15:28 -0400 Subject: [PATCH] docs: update typescript deep dive url --- coding-standards-es6-typescript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coding-standards-es6-typescript.md b/coding-standards-es6-typescript.md index ed3c8b1..a06fbf6 100644 --- a/coding-standards-es6-typescript.md +++ b/coding-standards-es6-typescript.md @@ -383,7 +383,7 @@ work in code transpiled to ES5 as seen ## Types In TypeScript, we disallow all implicit `any`s (see -[TypeScript Deep Dive](https://basarat.gitbooks.io/typescript/docs/options/noImplicitAny.html)). +[TypeScript Deep Dive](https://basarat.gitbook.io/typescript/intro/noimplicitany)). In addition, if a variable is part of the API of the function/module (i.e. it is exported or returned), it must have an **explicit** type. Also, the return types of functions