mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-14 19:25:08 +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 />;
|
||
|
}
|