@gez/date-time-kit
Version:
14 lines (13 loc) • 485 B
TypeScript
import { BaseAttrs, UiBase } from "../web-component-base";
export interface Attrs extends BaseAttrs {
'i18n-key'?: string;
}
export declare class Ele extends UiBase<Attrs> {
static readonly tagName: "dt-i18n";
protected static _style: string;
protected static _template: string;
static get observedAttributes(): string[];
protected _onAttrChanged(name: string, oldValue: string, newValue: string): void;
connectedCallback(): void;
updateText(): void;
}