/* eslint-disable */ /* tslint:disable */ /** * This is an autogenerated file created by the Stencil compiler. * It contains typing information for all components that exist in this project. */ import { HTMLStencilElement, JSXBase } from "@stencil/core/internal"; export namespace Components { interface MdsIcon { /** * The name of the icon or a base64 string to render it as an svg */ "name": string; /** * Set the path to the directory of svg files * @param svgPath path to the directory of svg files */ "setSvgPath": (svgPath: string) => Promise; } } declare global { interface HTMLMdsIconElement extends Components.MdsIcon, HTMLStencilElement { } var HTMLMdsIconElement: { prototype: HTMLMdsIconElement; new (): HTMLMdsIconElement; }; interface HTMLElementTagNameMap { "mds-icon": HTMLMdsIconElement; } } declare namespace LocalJSX { interface MdsIcon { /** * The name of the icon or a base64 string to render it as an svg */ "name": string; } interface IntrinsicElements { "mds-icon": MdsIcon; } } export { LocalJSX as JSX }; declare module "@stencil/core" { export namespace JSX { interface IntrinsicElements { "mds-icon": LocalJSX.MdsIcon & JSXBase.HTMLAttributes; } } }