From 95a93c2c444b2a6e8e3f737a98ec3ae4ba4e4b8e Mon Sep 17 00:00:00 2001 From: hide_d Date: Thu, 26 Aug 2021 04:00:52 +0900 Subject: [PATCH] =?UTF-8?q?misc:=20=EC=82=AC=EC=9A=A9=ED=95=98=EC=A7=80=20?= =?UTF-8?q?=EC=95=8A=EC=9D=80=20deprecated=20=ED=95=A8=EC=88=98=20?= =?UTF-8?q?=EB=A7=88=EC=A0=80=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/ts/common_deprecated.ts | 35 +---------------------------------- 1 file changed, 1 insertion(+), 34 deletions(-) diff --git a/hwe/ts/common_deprecated.ts b/hwe/ts/common_deprecated.ts index d3210ce8..e4be8e5e 100644 --- a/hwe/ts/common_deprecated.ts +++ b/hwe/ts/common_deprecated.ts @@ -1,4 +1,4 @@ -import { activeFlip, mb_strwidth, mb_strimwidth, convertDictById, convertSet, hexToRgb, isBrightColor, convColorValue, numberWithCommas, linkifyStrWithOpt, getIconPath, combineObject, combineArray, activeFlipItem, errUnknown, errUnknownToast, quickReject, getNpcColor, initTooltip } from "./common_legacy"; +import { activeFlip, mb_strwidth, isBrightColor, getIconPath, errUnknown, errUnknownToast, quickReject, initTooltip } from "./common_legacy"; import { TemplateEngine } from "./util/TemplateEngine"; import { escapeHtml } from "./legacy/escapeHtml"; import { nl2br } from "./util/nl2br"; @@ -27,34 +27,14 @@ declare global { /** @deprecated Module 사용할 것 */ mb_strwidth: typeof mb_strwidth; /** @deprecated Module 사용할 것 */ - mb_strimwidth: typeof mb_strimwidth; - /** @deprecated Module 사용할 것 */ - convertDictById: typeof convertDictById; - /** @deprecated Module 사용할 것 */ - convertSet: typeof convertSet; - /** @deprecated Module 사용할 것 */ - hexToRgb: typeof hexToRgb; - /** @deprecated Module 사용할 것 */ isBrightColor: typeof isBrightColor; /** @deprecated Module 사용할 것 */ - convColorValue: typeof convColorValue; - /** @deprecated Module 사용할 것 */ - numberWithCommas: typeof numberWithCommas; - /** @deprecated Module 사용할 것 */ - linkifyStrWithOpt: typeof linkifyStrWithOpt; - /** @deprecated Module 사용할 것 */ TemplateEngine: typeof TemplateEngine; /** @deprecated Module 사용할 것 */ getIconPath: typeof getIconPath; /** @deprecated Module 사용할 것 */ activeFlip: typeof activeFlip; /** @deprecated Module 사용할 것 */ - combineObject: typeof combineObject; - /** @deprecated Module 사용할 것 */ - combineArray: typeof combineArray; - /** @deprecated Module 사용할 것 */ - activeFlipItem: typeof activeFlipItem; - /** @deprecated Module 사용할 것 */ errUnknown: typeof errUnknown; /** @deprecated Module 사용할 것 */ errUnknownToast: typeof errUnknownToast; @@ -63,31 +43,18 @@ declare global { /** @deprecated Module 사용할 것 */ nl2br: typeof nl2br; /** @deprecated Module 사용할 것 */ - getNpcColor: typeof getNpcColor; - /** @deprecated Module 사용할 것 */ initTooltip: typeof initTooltip; } } window.escapeHtml = escapeHtml; window.mb_strwidth = mb_strwidth; -window.mb_strimwidth = mb_strimwidth; -window.convertDictById = convertDictById; -window.convertSet = convertSet; -window.hexToRgb = hexToRgb; window.isBrightColor = isBrightColor; -window.convColorValue = convColorValue; -window.numberWithCommas = numberWithCommas; -window.linkifyStrWithOpt = linkifyStrWithOpt; window.TemplateEngine = TemplateEngine; window.getIconPath = getIconPath; window.activeFlip = activeFlip; -window.combineObject = combineObject; -window.combineArray = combineArray; -window.activeFlipItem = activeFlipItem; window.errUnknown = errUnknown; window.errUnknownToast = errUnknownToast; window.quickReject = quickReject; window.nl2br = nl2br; -window.getNpcColor = getNpcColor; window.initTooltip = initTooltip; \ No newline at end of file