ol
Version:
OpenLayers mapping library
16 lines • 563 B
TypeScript
export default EqualTo;
/**
* @classdesc
* Represents a `<PropertyIsEqualTo>` comparison operator.
* @api
*/
declare class EqualTo extends ComparisonBinary {
/**
* @param {!string} propertyName Name of the context property to compare.
* @param {!(string|number)} expression The value to compare.
* @param {boolean=} opt_matchCase Case-sensitive?
*/
constructor(propertyName: string, expression: string | number, opt_matchCase?: boolean);
}
import ComparisonBinary from "./ComparisonBinary.js";
//# sourceMappingURL=EqualTo.d.ts.map