@spitch/reader
Version:
Embeddable audio reader component to render a rich audio reader player in African languages.
26 lines (25 loc) • 572 B
TypeScript
import { LitElement } from 'lit';
/**
* An example element.
*
* @slot - This element has a slot
* @csspart button - The button
*/
export declare class MyElement extends LitElement {
/**
* Copy for the read the docs hint.
*/
docsHint: string;
/**
* The number of times the button has been clicked.
*/
count: number;
render(): import("lit-html").TemplateResult<1>;
private _onClick;
static styles: import("lit").CSSResult;
}
declare global {
interface HTMLElementTagNameMap {
'my-element': MyElement;
}
}