Prefer relative imports for packages that import theirselves (#20034)

This commit is contained in:
Andy
2017-09-26 10:29:06 -07:00
committed by GitHub
parent fc018b7cbc
commit c44ab23fb9
60 changed files with 83 additions and 83 deletions

View File

@@ -1,4 +1,4 @@
import { Options } from "csv-parse";
import { Options } from "..";
declare function parse(input: string, options?: Options): any;
export = parse;