export default DownSamplingOperator; /** * * */ type DownSamplingOperator = string; declare namespace DownSamplingOperator { /** * Returns a DownSamplingOperator enum value from a JavaScript object name. * @param {Object} obj The plain JavaScript object containing the name of the enum value. * @return {DownSamplingOperator} The enum DownSamplingOperator value. */ function constructFromObject(obj: any): string; /** * Validates DownSamplingOperator enum value. * @param {Object} obj The plain JavaScript object containing the name of the enum value. * @return {null} Throws error for invalid value. */ function validate(obj: any): null; }