mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-05-17 02:18:42 +00:00

From now on, sketches are created in the temp folder, and will be moved to the `directories.user` location when the user performs a manual `Save`. A new sketch can be created with the `CtrlCmd+N` binding. Closes: arduino/arduino-pro-ide#260 Closes: arduino/arduino-pro-ide#261 Signed-off-by: Akos Kitta <kittaakos@typefox.io>
6 lines
196 B
TypeScript
6 lines
196 B
TypeScript
export const FileSystemExtPath = '/services/file-system-ext';
|
|
export const FileSystemExt = Symbol('FileSystemExt');
|
|
export interface FileSystemExt {
|
|
getUri(fsPath: string): Promise<string>;
|
|
}
|