@zowe/zos-files-for-zowe-sdk
Version:
Zowe SDK to interact with files and data sets on z/OS
21 lines • 527 B
TypeScript
import { IOptions } from "../../../doc/IOptions";
/**
* This interface defines the options that can be sent to get a data set or USS file function
* @export
* @interface IGetOptions
*/
export interface IGetOptions extends IOptions {
/**
* Range of records to return
* @type {string}
* @memberof IGetOptions
*/
range?: string;
/**
* Optional query parameters
* @type {string}
* @memberof IGetOptions
*/
queryParams?: string;
}
//# sourceMappingURL=IGetOptions.d.ts.map