st-progress-component
Version:
Stencil Progress Component
55 lines (39 loc) • 1.06 kB
TypeScript
/* 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 './stencil.core';
export namespace Components {
interface StProgress {
/**
* The visual color style of the progress
*/
'color': string;
}
interface StProgressAttributes extends StencilHTMLAttributes {
/**
* The visual color style of the progress
*/
'color'?: string;
}
}
declare global {
interface StencilElementInterfaces {
'StProgress': Components.StProgress;
}
interface StencilIntrinsicElements {
'st-progress': Components.StProgressAttributes;
}
interface HTMLStProgressElement extends Components.StProgress, HTMLStencilElement {}
var HTMLStProgressElement: {
prototype: HTMLStProgressElement;
new (): HTMLStProgressElement;
};
interface HTMLElementTagNameMap {
'st-progress': HTMLStProgressElement
}
interface ElementTagNameMap {
'st-progress': HTMLStProgressElement;
}
}