Initial Move from Azure DevOps to GitHub

This commit is contained in:
Steve Faulkner
2020-05-25 21:30:55 -05:00
commit 36581fb6d9
986 changed files with 195242 additions and 0 deletions

9
src/Definitions/globals.d.ts vendored Normal file
View File

@@ -0,0 +1,9 @@
/*
d3-shape depends on a global type CanvasPathMethods in lib.dom.d.ts, but this was renamed
to CanvasPath in TS 3.1. This file aliases the new type to the old type name to make
d3-shape happy.
See: https://github.com/DefinitelyTyped/DefinitelyTyped/pull/27776
And: https://github.com/Microsoft/TSJS-lib-generator/issues/548
*/
type CanvasPathMethods = CanvasPath;