UNPKG

@react-chess/chessground

Version:
11 lines (10 loc) 301 B
/// <reference types="react" /> import { Config } from 'chessground/config'; interface Props { width?: number; height?: number; contained?: boolean; config?: Config; } declare function Chessground({ width, height, config, contained, }: Props): JSX.Element; export default Chessground;