UNPKG

goban

Version:

[![License: Apache-2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

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[]; };