mirror of
https://github.com/p-stream/p-stream.git
synced 2026-03-13 06:26:16 +00: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 />;
|
|
}
|