/** * 图层索引 Property 类型谓词 * * @param {Property} property * @returns {property is Property} * @since 0.1.0 * @category Soil * @see foo, bar, yoo * @example * foo(param) * // => result */ function isLayerIndexProperty(property: Property): property is Property { return property.propertyValueType === PropertyValueType.LAYER_INDEX; } export default isLayerIndexProperty;