mirror of
https://github.com/danog/dart-sass.git
synced 2024-11-27 12:44:42 +01:00
Don't use type parameters for types that come from JS
JS values never have reified generics.
This commit is contained in:
parent
13b8ad6d4d
commit
628cf7b83f
@ -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;
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user