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

18
node_modules/ol/string.d.ts generated vendored Normal file
View File

@@ -0,0 +1,18 @@
/**
* @module ol/string
*/
/**
* @param {number} number Number to be formatted
* @param {number} width The desired width
* @param {number} [opt_precision] Precision of the output string (i.e. number of decimal places)
* @return {string} Formatted string
*/
export function padNumber(number: number, width: number, opt_precision?: number | undefined): string;
/**
* Adapted from https://github.com/omichelsen/compare-versions/blob/master/index.js
* @param {string|number} v1 First version
* @param {string|number} v2 Second version
* @return {number} Value
*/
export function compareVersions(v1: string | number, v2: string | number): number;
//# sourceMappingURL=string.d.ts.map