@typed-tabletop-simulator/ui
Version:
JSX wrapper and components for Tabletop Simulator UI
8 lines (7 loc) • 308 B
TypeScript
/** @noSelfInFile */
import { BaseProps, BaseUIElement } from "./base";
export interface HorizontalScrollViewProps extends BaseProps {
}
export declare class HorizontalScrollView extends BaseUIElement<HorizontalScrollViewProps> {
constructor(props: HorizontalScrollViewProps, children: JSX.Element[]);
}