update JSDoc

pull/4767/head
Joseph Izang 6 months ago
parent a19a516f15
commit 597940606e
  1. 4
      libs/remix-ui/workspace/src/lib/components/file-explorer.tsx

@ -298,7 +298,7 @@ export const FileExplorer = (props: FileExplorerProps) => {
* without showing a modal dialong to the user.
* @param dest path of the destination
* @param src path of the source
* @returns {void}
* @returns {Promise<void>}
*/
const moveFileSilently = async (dest: string, src: string) => {
if (dest.length === 0 || src.length === 0) return
@ -321,7 +321,7 @@ export const FileExplorer = (props: FileExplorerProps) => {
* without showing a modal dialong to the user.
* @param dest path of the destination
* @param src path of the source
* @returns {void}
* @returns {Promise<void>}
*/
const moveFolderSilently = async (dest: string, src: string) => {
if (dest.length === 0 || src.length === 0) return

Loading…
Cancel
Save