terriajs
Version:
Geospatial data visualization platform.
15 lines (12 loc) • 363 B
TypeScript
import type { Component } from "react";
import ViewState from "../../../../ReactViewModels/ViewState";
interface PropsType {
viewState: ViewState;
videoName: string;
videoLink: string;
background: string;
// A number between 0 and 1.0
backgroundOpacity?: number;
}
declare class VideoGuide extends Component<PropsType> {}
export default VideoGuide;