diff --git a/src/declarations/stencil-public-runtime.ts b/src/declarations/stencil-public-runtime.ts index 67ee61ca002..3c01cddb25a 100644 --- a/src/declarations/stencil-public-runtime.ts +++ b/src/declarations/stencil-public-runtime.ts @@ -1583,6 +1583,8 @@ export namespace JSXBase { tabIndex?: number; tabindex?: number | string; title?: string; + // `(string & {})` keeps autocomplete without rejecting vals spread from an object literal + translate?: 'yes' | 'no' | (string & {}); // These types don't allow you to use popover as a boolean attribute // so you can't write HTML like `
` and get the default value. // Developer must explicitly specify one of the valid popover values or it will fallback