AbdulElahGwaith's picture
Upload folder using huggingface_hub
84c1942 verified
Raw
History Blame Contribute Delete
180 Bytes
import { Action } from '../';
export function rename(path: string, title: string) {
return {
type: 'action',
action: 'source.module.rename',
path,
title,
};
}