UNPKG

ol

Version:

OpenLayers mapping library

26 lines (22 loc) 345 B
/** * @module ol/format/filter/ResourceId */ import Filter from './Filter.js'; /** * @classdesc * * @abstract */ class ResourceId extends Filter { /** * @param {!string} rid Resource ID. */ constructor(rid) { super('ResourceId'); /** * @type {!string} */ this.rid = rid; } } export default ResourceId;