mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
Co-authored-by: Rahim <rahim.alwer@gmail.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
514 B
TypeScript
14 lines
514 B
TypeScript
import { StatusIndicatorElement } from '../../ui/status-indicator/status-indicator-element';
|
|
import { StatusIndicatorValueElement } from '../../ui/status-indicator/status-indicator-value-element';
|
|
import { safeDefine } from '../safe-define';
|
|
|
|
safeDefine(StatusIndicatorElement);
|
|
safeDefine(StatusIndicatorValueElement);
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
[StatusIndicatorElement.tagName]: StatusIndicatorElement;
|
|
[StatusIndicatorValueElement.tagName]: StatusIndicatorValueElement;
|
|
}
|
|
}
|