You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/documents/guides/best-practices.html.md.eco
+1-1
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ declare module 'foo' {
37
37
38
38
### Extending built-in types
39
39
There isn't a way to add *static members* to native objects at the moment as `lib.d.ts` defines them as a `var Date:{/*members*/}` and `var`s are not extendable.
40
-
Two solutions are proposed to the TS team. Either [use interfaces instead of var in lib.d.ts (vote)](https://typescript.codeplex.com/workitem/1085) and/or [make variables/classes open ended (vote)](https://typescript.codeplex.com/workitem/917)
40
+
Two solutions are proposed to the TS team. Either [use interfaces instead of var in lib.d.ts (vote)](https://web.archive.org/web/20170624125029/https://typescript.codeplex.com/workitem/1085) and/or [make variables/classes open ended (vote)](https://web.archive.org/web/20170624162922/https://typescript.codeplex.com/workitem/917)
41
41
42
42
For adding members to *instances* of native types there are relevant interfaces in available in `lib.d.ts` e.g.
Copy file name to clipboardExpand all lines: src/documents/guides/creating.html.md.eco
+1-1
Original file line number
Diff line number
Diff line change
@@ -3,4 +3,4 @@ layout: 'guide'
3
3
title: 'Creating a definition file'
4
4
---
5
5
6
-
The official TypeScript website has a [guide](https://www.typescriptlang.org/docs/handbook/declaration-files/introduction.html) to teach you how to write a high-quality TypeScript Declaration File. The official TypeScript wiki on codeplex.com also has a [great article](https://typescript.codeplex.com/wikipage?title=Writing%20Definition%20%28.d.ts%29%20Files) on how to write a good type declaration file. It is recommended you read those as it covers some important choices.
6
+
The official TypeScript website has a [guide](https://www.typescriptlang.org/docs/handbook/declaration-files/introduction.html) to teach you how to write a high-quality TypeScript Declaration File. The official TypeScript wiki on codeplex.com also has a [great article](https://web.archive.org/web/20170621094939/https://typescript.codeplex.com/wikipage?title=Writing%20Definition%20%28.d.ts%29%20Files) on how to write a good type declaration file. It is recommended you read those as it covers some important choices.
Copy file name to clipboardExpand all lines: src/documents/pages/language-issues.html.md.eco
+11-11
Original file line number
Diff line number
Diff line change
@@ -3,61 +3,61 @@ layout: 'page'
3
3
title: 'Language issues'
4
4
---
5
5
6
-
There are a few problems in TypeScript that limit the expressiveness of the type declarations. This page tracks the known issues that we submitted or found on the TypeScript [codeplex bugtracker](https://typescript.codeplex.com/workitem/list/basic).
6
+
There are a few problems in TypeScript that limit the expressiveness of the type declarations. This page tracks the known issues that we submitted or found on the TypeScript [Github issue tracker](https://github.com/microsoft/TypeScript/issues).
7
7
8
8
If you know of a typing related issue not linked here please leave and issue in this [repos](https://github.com/DefinitelyTyped/definitelytyped.github.io) or make a PR on the *source*-branch.
### [482](https://typescript.codeplex.com/workitem/482) and [1085](https://typescript.codeplex.com/workitem/1085)
16
+
### [482](https://web.archive.org/web/20170705204211/https://typescript.codeplex.com/workitem/482) and [1085](https://web.archive.org/web/20170624125029/https://typescript.codeplex.com/workitem/1085)
17
17
18
18
> Allow to extend global variables like Date or Object to support libs like sugar.js
19
19
20
20
> Use Static interfaces for ambient declarations in lib.d.ts
21
21
22
22
23
-
### [507](https://typescript.codeplex.com/workitem/507) and [2364](https://typescript.codeplex.com/workitem/2364)
23
+
### [507](https://web.archive.org/web/20170705154141/https://typescript.codeplex.com/workitem/507) and [2364](https://web.archive.org/web/20170705200214/https://typescript.codeplex.com/workitem/2364)
24
24
25
25
> Support optional ambient "this" pointer typing in callback/function signatures
0 commit comments