goban
Version:
[](https://opensource.org/licenses/Apache-2.0)
24 lines (23 loc) • 578 B
TypeScript
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[];
};