Skip to content

Commit

Permalink
docs: rewrite JSDoc for custom-elements-manifest/analyzer
Browse files Browse the repository at this point in the history
Related to: #7610
  • Loading branch information
s-todorova committed Nov 23, 2023
1 parent 1f63698 commit cf7d315
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 1 addition & 2 deletions packages/main/src/Card.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ import type I18nBundle from "@ui5/webcomponents-base/dist/i18nBundle.js";
import { getEffectiveAriaLabelText } from "@ui5/webcomponents-base/dist/util/AriaLabelHelper.js";
import CardTemplate from "./generated/templates/CardTemplate.lit.js";
import Icon from "./Icon.js";
import type { ICardHeader } from "./Interfaces";

import type { ICardHeader } from "./CardHeader.js";
import {
ARIA_ROLEDESCRIPTION_CARD,
ARIA_LABEL_CARD_CONTENT,
Expand Down
3 changes: 3 additions & 0 deletions packages/main/src/CardHeader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,3 +249,6 @@ class CardHeader extends UI5Element implements ICardHeader {
CardHeader.define();

export default CardHeader;
export type {
ICardHeader,
};
5 changes: 2 additions & 3 deletions packages/main/src/Interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,10 @@ const IColorPaletteItem = "sap.ui.webc.main.IColorPaletteItem";
/**
* Interface for components that represent an icon, usable in numerous higher-order components
*
* @name sap.ui.webc.main.IIcon
* @interface
* @public
*/
const IIcon = "sap.ui.webc.main.IIcon";
// eslint-disable-next-line @typescript-eslint/no-empty-interface
interface IIcon extends HTMLElement { }

/**
* Interface for components that represent an input, usable in numerous higher-order components
Expand Down

0 comments on commit cf7d315

Please sign in to comment.