import { IFileService } from './file-service'; import { URI } from '@vscode-alt/monaco-editor/esm/vs/base/common/uri'; export interface IFileLocalService extends IFileService { /** * @deprecated#@sri This is not exist in the vscode any more but we added here to support backward compatiblity * @param resource * @param newName */ rename(resource: URI, newName: string): any; }