From b53a1a19ed576a9bea0cd0d7ba3e28e30f95c8c8 Mon Sep 17 00:00:00 2001 From: Kenta Moriuchi Date: Wed, 7 Feb 2024 04:59:25 +0900 Subject: [PATCH] tweak --- ext/geometry/lib.deno_geometry.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ext/geometry/lib.deno_geometry.d.ts b/ext/geometry/lib.deno_geometry.d.ts index 75d63044ba801a..bb00c1bc42aab2 100644 --- a/ext/geometry/lib.deno_geometry.d.ts +++ b/ext/geometry/lib.deno_geometry.d.ts @@ -169,13 +169,13 @@ interface DOMMatrix extends DOMMatrixReadOnly { /** * Modifies the matrix by applying the specified skew transformation along the X-axis. * - * @param sx + * @param sx in degrees */ skewXSelf(sx?: number): DOMMatrix; /** * Modifies the matrix by applying the specified skew transformation along the Y-axis. * - * @param sy + * @param sy in degrees */ skewYSelf(sy?: number): DOMMatrix; /** @@ -348,13 +348,13 @@ interface DOMMatrixReadOnly { /** * Returns a new DOMMatrix created by applying the specified skew transformation to the source matrix along its X-axis. * - * @param sx + * @param sx in degrees */ skewX(sx?: number): DOMMatrix; /** * Returns a new DOMMatrix created by applying the specified skew transformation to the source matrix along its Y-axis. * - * @param sy + * @param sy in degrees */ skewY(sy?: number): DOMMatrix; toFloat32Array(): Float32Array;