diff options
| author | Vincent LE GOFF <g_n_s@hotmail.fr> | 2019-03-14 15:24:54 +0100 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-03-14 10:24:54 -0400 |
| commit | 0b4f73cf9d6e7674c76126fc9d37defb58e7a433 (patch) | |
| tree | a7f47f908cf81ea36771b537fe043d3ed17bfc34 /fs/move.ts | |
| parent | a391660d2d539e3ca71418604e34df6c50dd6502 (diff) | |
Improve jsdoc (denoland/deno_std#277)
Original: https://github.com/denoland/deno_std/commit/1805c18ac7ed3aa6727f509ee2ec55f718ff2f61
Diffstat (limited to 'fs/move.ts')
| -rw-r--r-- | fs/move.ts | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/fs/move.ts b/fs/move.ts index f64509788..eb6352bd5 100644 --- a/fs/move.ts +++ b/fs/move.ts @@ -15,14 +15,7 @@ function isSrcSubdir(src: string, dest: string): boolean { }, true); } -/** - * Moves a file or directory - * @export - * @param {string} src - * @param {string} dest - * @param {MoveOptions} [options] - * @returns {Promise<void>} - */ +/** Moves a file or directory */ export async function move( src: string, dest: string, @@ -52,14 +45,7 @@ export async function move( return; } -/** - * Moves a file or directory - * @export - * @param {string} src - * @param {string} dest - * @param {MoveOptions} [options] - * @returns {void} - */ +/** Moves a file or directory */ export function moveSync( src: string, dest: string, |
