> lib/util/xml.browser.ts(16,20): error TS7006: Parameter 's' implicitly has an 'any' type.
This commit is contained in:
Jeremy Meng 2023-04-10 22:19:03 +00:00
Родитель 0d5d03216c
Коммит b63d4794ae
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -13,7 +13,7 @@ let ttPolicy: Pick<TrustedTypePolicy, "createHTML"> | undefined;
try {
if (typeof self.trustedTypes !== "undefined") {
ttPolicy = self.trustedTypes.createPolicy("@azure/ms-rest-js#xml.browser", {
createHTML: (s) => s,
createHTML: (s: any) => s,
});
}
} catch (e) {