@sasjs/cli
Version:
Command line interface for SASjs
10 lines (9 loc) • 452 B
TypeScript
import SASjs from '@sasjs/adapter/node';
/**
* Edits existing compute context.
* @param {string} configName - name of the config to edit.
* @param {object} config - context configuration.
* @param {object} sasjs - configuration object of SAS adapter.
* @param {string} accessToken - an access token for an authorized user.
*/
export declare function edit(configName: string | null, config: any, sasjs: SASjs, accessToken: string): Promise<void>;