@file-services/types
Advanced tools
Comparing version 0.4.2 to 0.4.4
@@ -39,2 +39,6 @@ import { IBaseFileSystemAsync, IBaseFileSystemSync, IFileSystemStats } from './base-api'; | ||
populateDirectorySync(directoryPath: string, contents: IDirectoryContents): void; | ||
/** | ||
* Recursively remove a path. | ||
*/ | ||
removeSync(path: string): void; | ||
} | ||
@@ -72,2 +76,6 @@ /** | ||
populateDirectory(directoryPath: string, contents: IDirectoryContents): Promise<void>; | ||
/** | ||
* Recursively remove a path. | ||
*/ | ||
remove(path: string): Promise<void>; | ||
} | ||
@@ -74,0 +82,0 @@ /** |
{ | ||
"name": "@file-services/types", | ||
"description": "Common file system interfaces", | ||
"version": "0.4.2", | ||
"version": "0.4.4", | ||
"main": "cjs/index.js", | ||
@@ -24,3 +24,3 @@ "types": "cjs/index.d.ts", | ||
"sideEffects": false, | ||
"gitHead": "88ebfe791abdb1403b5f74e0951704332581fd01" | ||
"gitHead": "2581162c8cc61d5a9d4b9a8e2f488e4f86c2d22b" | ||
} |
@@ -49,3 +49,3 @@ import { IBaseFileSystemAsync, IBaseFileSystemSync, IFileSystemStats } from './base-api' | ||
*/ | ||
// removeSync(path: string): void | ||
removeSync(path: string): void | ||
@@ -98,3 +98,3 @@ /** | ||
*/ | ||
// remove(path: string): Promise<void> | ||
remove(path: string): Promise<void> | ||
@@ -101,0 +101,0 @@ /** |
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
34055
779