@fimbul/ymir
Advanced tools
Comparing version 0.13.0 to 0.15.0-dev.20180913
{ | ||
"name": "@fimbul/ymir", | ||
"version": "0.13.0", | ||
"version": "0.15.0-dev.20180913", | ||
"description": "Core library for the Fimbullinter project", | ||
@@ -5,0 +5,0 @@ "publishConfig": { |
@@ -232,3 +232,3 @@ import 'reflect-metadata'; | ||
readFile(file: string): string; | ||
readDirectory(dir: string): string[]; | ||
readDirectory(dir: string): Array<string | Dirent>; | ||
stat(path: string): Stats; | ||
@@ -246,2 +246,6 @@ realpath?(path: string): string; | ||
} | ||
export interface Dirent extends Stats { | ||
name: string; | ||
isSymbolicLink(): boolean; | ||
} | ||
export interface RuleLoaderHost { | ||
@@ -248,0 +252,0 @@ loadCoreRule(name: string): RuleConstructor | undefined; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
35292
496