mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
feat(spf): basic audio only use case + use-case-composition doc-type + implementation skills (#1584)
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.7
parent
338020e1d5
commit
1a3cb45b29
@@ -0,0 +1,14 @@
|
||||
import { SimpleHlsAudioOnly } from '../../media/simple-hls-audio-only';
|
||||
import { safeDefine } from '../safe-define';
|
||||
|
||||
export class SimpleHlsAudioOnlyElement extends SimpleHlsAudioOnly {
|
||||
static readonly tagName = 'simple-hls-audio-only';
|
||||
}
|
||||
|
||||
safeDefine(SimpleHlsAudioOnlyElement);
|
||||
|
||||
declare global {
|
||||
interface HTMLElementTagNameMap {
|
||||
[SimpleHlsAudioOnlyElement.tagName]: SimpleHlsAudioOnlyElement;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user