From d72bbecee23c0bca0998b9dce64179c1a2691a62 Mon Sep 17 00:00:00 2001 From: Takashi Tamura Date: Mon, 3 Aug 2020 09:58:19 +0900 Subject: [PATCH] Fix the type of SVGGraphics. --- src/display/svg.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/display/svg.js b/src/display/svg.js index 81b1dc1a9e0a5..412e27661c7ef 100644 --- a/src/display/svg.js +++ b/src/display/svg.js @@ -29,6 +29,7 @@ import { import { DOMSVGFactory } from "./display_utils.js"; import { isNodeJS } from "../shared/is_node.js"; +/** @type {any} */ let SVGGraphics = function () { throw new Error("Not implemented: SVGGraphics"); };