Don't use type parameters for types that come from JS

JS values never have reified generics.
This commit is contained in:
Natalie Weizenbaum 2018-07-24 16:32:36 -07:00
parent 13b8ad6d4d
commit 628cf7b83f
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ class RenderOptions {
external String get data;
external dynamic get importer;
external dynamic get functions;
external List<String> get includePaths;
external List get includePaths; // contains Strings
external bool get indentedSyntax;
external bool get omitSourceMapUrl;
external String get outFile;

View File

@ -24,7 +24,7 @@ class RenderResultStats {
external int get start;
external int get end;
external int get duration;
external List<String> get includedFiles;
external List get includedFiles; // contains Strings
external factory RenderResultStats(
{String entry,