зеркало из https://github.com/Azure/ms-rest-js.git
fix compile error of
> lib/util/xml.browser.ts(16,20): error TS7006: Parameter 's' implicitly has an 'any' type.
This commit is contained in:
Родитель
0d5d03216c
Коммит
b63d4794ae
|
@ -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) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче