All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.obj.d.ts Maven / Gradle / Ivy

The newest version!
/**
 * @module ol/obj
 */
/**
 * Removes all properties from an object.
 * @param {Object} object The object to clear.
 */
export function clear(object: {
    [x: string]: unknown;
}): void;
/**
 * Determine if an object has any properties.
 * @param {Object} object The object to check.
 * @return {boolean} The object is empty.
 */
export function isEmpty(object: any): boolean;
//# sourceMappingURL=obj.d.ts.map




© 2015 - 2024 Weber Informatics LLC | Privacy Policy