UNPKG

goban-engine

Version:

This contains the built Go engine that is used by the Goban package. There are no display components in this package, only the logic for playing the game of Go, making it suitable for usage in node.js or other server-side environments.

24 lines (23 loc) 578 B
export { GobanTheme } from "./GobanTheme"; import { GobanTheme } from "./GobanTheme"; export interface ThemesInterface { white: { [name: string]: typeof GobanTheme; }; black: { [name: string]: typeof GobanTheme; }; board: { [name: string]: typeof GobanTheme; }; [key: string]: { [name: string]: typeof GobanTheme; }; } export declare const THEMES: ThemesInterface; export declare const THEMES_SORTED: { white: GobanTheme[]; black: GobanTheme[]; board: GobanTheme[]; [key: string]: GobanTheme[]; };