UNPKG

mycrossword

Version:
11 lines (9 loc) 348 B
import { Cell, SeparatorLocations } from '~/types'; interface SolutionDisplayProps { cells: Cell[]; letters?: string; separators: SeparatorLocations; shuffling: boolean; } export default function SolutionDisplay({ cells, letters, separators, shuffling, }: SolutionDisplayProps): import("react/jsx-runtime").JSX.Element; export {};