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

25
node_modules/ol/rotationconstraint.d.ts generated vendored Normal file
View File

@@ -0,0 +1,25 @@
/**
* @typedef {function((number|undefined), boolean=): (number|undefined)} Type
*/
/**
* @param {number|undefined} rotation Rotation.
* @return {number|undefined} Rotation.
*/
export function disable(rotation: number | undefined): number | undefined;
/**
* @param {number|undefined} rotation Rotation.
* @return {number|undefined} Rotation.
*/
export function none(rotation: number | undefined): number | undefined;
/**
* @param {number} n N.
* @return {Type} Rotation constraint.
*/
export function createSnapToN(n: number): Type;
/**
* @param {number} [opt_tolerance] Tolerance.
* @return {Type} Rotation constraint.
*/
export function createSnapToZero(opt_tolerance?: number | undefined): Type;
export type Type = (arg0: (number | undefined), arg1: boolean | undefined) => (number | undefined);
//# sourceMappingURL=rotationconstraint.d.ts.map