Interface FileRenameEvent

An event that is fired after files are renamed.

interface FileRenameEvent {
    files: readonly {
        newUri: Uri;
        oldUri: Uri;
    }[];
}

Properties

Properties

files: readonly {
    newUri: Uri;
    oldUri: Uri;
}[]

The files that got renamed.