UNPKG

kepler.gl

Version:

kepler.gl is a webgl based application to visualize large scale location data in the browser

12 lines (11 loc) 546 B
/** * Recursively save / load value for state based on property keys, * if property[key] is another schema * Use is to get value to save * @param {Object} state - state to save * @param {Object} properties - properties schema * @returns {Object} - saved state */ export declare function savePropertiesOrApplySchema(state: any, properties: any): any; export declare function loadPropertiesOrApplySchema(state: any, properties: any): any; export declare function getPropertyValueFromSchema(operation: any, state: any, properties: any): any;