From 13665068e35277acab43b4b73f18055d83ec9033 Mon Sep 17 00:00:00 2001 From: Bob_PDX <100870126+sqwarellc@users.noreply.github.com> Date: Sat, 18 Mar 2023 11:42:14 -0700 Subject: [PATCH] Update svg.filter.js.d.ts Correcting typo of "distandLight" to "distantLight" in type definitions, per discussion in Issue #61 --- svg.filter.js.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/svg.filter.js.d.ts b/svg.filter.js.d.ts index 1b5095c..6f2e5b0 100644 --- a/svg.filter.js.d.ts +++ b/svg.filter.js.d.ts @@ -106,7 +106,7 @@ declare module "@svgdotjs/svg.js" { } interface LightEffects { - distandLight (attr?: Object | SVGFEDistantLightElement): DistantLight + distantLight (attr?: Object | SVGFEDistantLightElement): DistantLight pointLight (attr?: Object | SVGFEPointLightElement): PointLight spotLight (attr?: Object | SVGFESpotLightElement): SpotLight } @@ -153,7 +153,7 @@ declare module "@svgdotjs/svg.js" { constructor (node: SVGFEDiffuseLightingElement) constructor (attr: Object) - distandLight (attr?: Object | SVGFEDistantLightElement): DistantLight + distantLight (attr?: Object | SVGFEDistantLightElement): DistantLight pointLight (attr?: Object | SVGFEPointLightElement): PointLight spotLight (attr?: Object | SVGFESpotLightElement): SpotLight } @@ -207,7 +207,7 @@ declare module "@svgdotjs/svg.js" { constructor (node: SVGFESpecularLightingElement) constructor (attr: Object) - distandLight (attr?: Object | SVGFEDistantLightElement): DistantLight + distantLight (attr?: Object | SVGFEDistantLightElement): DistantLight pointLight (attr?: Object | SVGFEPointLightElement): PointLight spotLight (attr?: Object | SVGFESpotLightElement): SpotLight }