planning
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s

This commit is contained in:
2024-10-14 09:15:30 +02:00
parent bcba00a730
commit 6e64e138e2
21059 changed files with 2317811 additions and 1 deletions

27
node_modules/ol/obj.d.ts generated vendored Normal file
View File

@@ -0,0 +1,27 @@
/**
* Removes all properties from an object.
* @param {Object} object The object to clear.
*/
export function clear(object: any): 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;
export function assign(target: any, var_sources: any, ...args: any[]): any;
/**
* Polyfill for Object.values(). Get an array of property values from an object.
* See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/values
*
* @param {!Object<K,V>} object The object from which to get the values.
* @return {!Array<V>} The property values.
* @template K,V
*/
export const getValues: {
<T>(o: {
[s: string]: T;
} | ArrayLike<T>): T[];
(o: {}): any[];
};
//# sourceMappingURL=obj.d.ts.map