mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 18:41:47 +00:00
39 lines
875 B
TypeScript
39 lines
875 B
TypeScript
import type { ComponentProps } from 'solid-js';
|
|
|
|
declare module 'solid-js' {
|
|
namespace JSX {
|
|
interface YtFormattedStringProps {
|
|
text?: {
|
|
runs: { text: string }[];
|
|
};
|
|
data?: object;
|
|
disabled?: boolean;
|
|
hidden?: boolean;
|
|
}
|
|
|
|
interface YtButtonRendererProps {
|
|
data?: {
|
|
icon?: {
|
|
iconType: string;
|
|
};
|
|
isDisabled?: boolean;
|
|
style?: string;
|
|
text?: {
|
|
simpleText: string;
|
|
};
|
|
};
|
|
}
|
|
|
|
interface YpYtPaperSpinnerLiteProps {
|
|
active?: boolean;
|
|
}
|
|
|
|
interface IntrinsicElements {
|
|
'yt-formatted-string': ComponentProps<'span'> & YtFormattedStringProps;
|
|
'yt-button-renderer': ComponentProps<'button'> & YtButtonRendererProps;
|
|
'tp-yt-paper-spinner-lite': ComponentProps<'div'> &
|
|
YpYtPaperSpinnerLiteProps;
|
|
}
|
|
}
|
|
}
|