* Creates new directory at given source url. * @param src Source url * @param dirName New directory name * @param onSuccess Callback function on success returns url of new directory * @param onFail callback function on error returns error object
(
src: string,
dirName: string,
onSuccess: (url: string) => void,
onFail: (err: any) => void,
)
| 85 | * @param onFail callback function on error returns error object |
| 86 | */ |
| 87 | createDir( |
| 88 | src: string, |
| 89 | dirName: string, |
| 90 | onSuccess: (url: string) => void, |
no outgoing calls
no test coverage detected