mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-21 14:47:41 +01:00
15 lines
346 B
TypeScript
15 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 />;
|
|
}
|