mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-22 14:57:40 +01:00
16 lines
346 B
TypeScript
16 lines
346 B
TypeScript
|
declare global {
|
||
|
// eslint-disable-next-line @typescript-eslint/no-namespace
|
||
|
namespace JSX {
|
||
|
interface IntrinsicElements {
|
||
|
"google-cast-launcher": React.DetailedHTMLProps<
|
||
|
React.HTMLAttributes<HTMLElement>,
|
||
|
HTMLElement
|
||
|
>;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export function ChromeCastControl() {
|
||
|
return <google-cast-launcher />;
|
||
|
}
|