Socket
Socket
Sign inDemoInstall

@file-services/types

Package Overview
Dependencies
Maintainers
4
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@file-services/types - npm Package Compare versions

Comparing version 4.0.0 to 4.1.0

4

cjs/base-api-async.d.ts

@@ -173,3 +173,7 @@ import type { IFileSystemStats, BufferEncoding, CallbackFnVoid, CallbackFn, WriteFileOptions, ReadFileOptions, IDirectoryEntry } from './common-fs-types';

readlink(path: string): Promise<string>;
/**
* Creates a symbolic link for `target` at `path`. default type is 'file'.
*/
symlink(target: string, path: string, type?: 'dir' | 'file' | 'junction'): Promise<void>;
}
//# sourceMappingURL=base-api-async.d.ts.map

@@ -102,3 +102,7 @@ import type { IFileSystemStats, BufferEncoding, WriteFileOptions, ReadFileOptions, IDirectoryEntry } from './common-fs-types';

readlinkSync(path: string): string;
/**
* Creates a symbolic link for `target` at `path`. default type is 'file'.
*/
symlinkSync(target: string, path: string, type?: 'dir' | 'file' | 'junction'): void;
}
//# sourceMappingURL=base-api-sync.d.ts.map

2

package.json
{
"name": "@file-services/types",
"description": "Common file system interfaces",
"version": "4.0.0",
"version": "4.1.0",
"main": "cjs/index.js",

@@ -6,0 +6,0 @@ "types": "cjs/index.d.ts",

@@ -198,2 +198,7 @@ import type {

readlink(path: string): Promise<string>;
/**
* Creates a symbolic link for `target` at `path`. default type is 'file'.
*/
symlink(target: string, path: string, type?: 'dir' | 'file' | 'junction'): Promise<void>;
}

@@ -114,2 +114,7 @@ import type {

readlinkSync(path: string): string;
/**
* Creates a symbolic link for `target` at `path`. default type is 'file'.
*/
symlinkSync(target: string, path: string, type?: 'dir' | 'file' | 'junction'): void;
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc