UNPKG

ol

Version:

OpenLayers mapping library

16 lines 558 B
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} [matchCase] Case-sensitive? */ constructor(propertyName: string, expression: (string | number), matchCase?: boolean); } import ComparisonBinary from './ComparisonBinary.js'; //# sourceMappingURL=EqualTo.d.ts.map