react-twitch-embed
Version:
A collection of components to embed Twitch.
13 lines • 406 B
TypeScript
import React from 'react';
export interface TwitchClipProps extends React.HTMLAttributes<HTMLIFrameElement> {
clip: string;
parent?: string | string[];
autoplay?: boolean;
muted?: boolean;
title?: string;
height?: string | number;
width?: string | number;
}
declare const TwitchClip: React.FC<TwitchClipProps>;
export default TwitchClip;
//# sourceMappingURL=TwitchClip.d.ts.map