From 1112b83e7568268df259e0be18adc531dc1ae07f Mon Sep 17 00:00:00 2001 From: Alice Pote Date: Fri, 9 Dec 2022 10:53:43 -0500 Subject: [PATCH] add `@deprecated` tag to JSDoc --- src/declarations/stencil-public-compiler.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/declarations/stencil-public-compiler.ts b/src/declarations/stencil-public-compiler.ts index b45c7708076d..28c4831b41de 100644 --- a/src/declarations/stencil-public-compiler.ts +++ b/src/declarations/stencil-public-compiler.ts @@ -319,6 +319,9 @@ export interface ConfigExtras { * if it's determined that shadow dom is already natively supported by the browser then * it does not request the shim. When set to `false` it will avoid all shadow dom tests. * Defaults to `false`. + * + * @deprecated Since Stencil v3.0.0. IE 11, Edge <= 18, and old Safari versions + * are no longer supported. */ __deprecated__shadowDomShim?: boolean;