mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-06-13 07:36:32 +00:00
6 lines
194 B
TypeScript
6 lines
194 B
TypeScript
export const FileSystemExtPath = '/services/file-system-ext';
|
|
export const FileSystemExt = Symbol('FileSystemExt');
|
|
export interface FileSystemExt {
|
|
getUri(fsPath: string): Promise<string>;
|
|
}
|