OldUMD and many other module fixes.

This commit is contained in:
Raghav Katyal
2016-05-23 15:17:06 -07:00
parent fb9c384720
commit c17b1b78b8
328 changed files with 12184 additions and 12442 deletions

18
d3-dsv/index.d.ts vendored
View File

@@ -4,18 +4,16 @@
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
//commonjs loader
declare module "d3-dsv" {
/** A parser and formatter for DSV (CSV and TSV) files.
Extracted from D3. */
var loader: (
/** the symbol used to seperate cells in the row.*/
delimiter: string,
/** example: "text/plain" */
encoding?: string) => _d3dsv.D3Dsv;
export = loader;
}
declare var loader: (
/** the symbol used to seperate cells in the row.*/
delimiter: string,
/** example: "text/plain" */
encoding?: string) => _d3dsv.D3Dsv;
export = loader;
export as namespace d3_dsv;
declare module _d3dsv {
/** A parser and formatter for DSV (CSV and TSV) files.
Extracted from D3. */