@salesforce/vscode-services 65.5.0 → 65.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as vscode from 'vscode';
|
|
2
|
-
export type
|
|
2
|
+
export type FsProvider = vscode.FileSystemProvider & {
|
|
3
3
|
/** does not exist in the vscode.FileSystemProvider but super handy so I added it*/
|
|
4
4
|
exists: (uri: vscode.Uri) => boolean;
|
|
5
5
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as Effect from 'effect/Effect';
|
|
2
2
|
import { SettingsService } from '../vscode/settingsService';
|
|
3
|
-
import {
|
|
3
|
+
import { FsProvider } from './fsTypes';
|
|
4
4
|
/** Creates the files for an empty sfdx project */
|
|
5
|
-
export declare const projectFiles: (fsp:
|
|
5
|
+
export declare const projectFiles: (fsp: FsProvider) => Effect.Effect<void, Error, SettingsService>;
|
|
6
6
|
//# sourceMappingURL=projectInit.d.ts.map
|