UNPKG

@sasjs/cli

Version:

Command line interface for SASjs

9 lines (8 loc) 442 B
import SASjs from '@sasjs/adapter/node'; /** * Moves folder to a new location. * @param {string} paths - folder paths (source path and destination path separated by space). * @param {object} sasjs - configuration object of SAS adapter. * @param {string} accessToken - an access token for an authorized user. */ export declare const move: (sourcePath: string, destinationPath: string, sasjs: SASjs, accessToken: string) => Promise<void>;