import { IDataSet } from "../../../doc/IDataSet";
/**
 * This interface defines the options that can be sent into the copy data set function.
 */
export interface ICopyDatasetOptions {
    /**
     * The dataset to copy from.
     * @type {IDataSet}
     */
    fromDataSet: IDataSet;
    /**
     * Enq option
     * Allow values are: SHR, SHRW, EXCLU.
     * @type {string}
     */
    enq?: string;
    /**
     * Replace option
     * @type {boolean}
     */
    replace?: boolean;
}
