Interface ThemesInterface

interface ThemesInterface {
    black: {
        [name: string]: typeof GobanTheme;
    };
    board: {
        [name: string]: typeof GobanTheme;
    };
    white: {
        [name: string]: typeof GobanTheme;
    };
    [key: string]: {
        [name: string]: typeof GobanTheme;
    };
}

Indexable

[key: string]: {
    [name: string]: typeof GobanTheme;
}

Properties

Properties

black: {
    [name: string]: typeof GobanTheme;
}

Type declaration

board: {
    [name: string]: typeof GobanTheme;
}

Type declaration

white: {
    [name: string]: typeof GobanTheme;
}

Type declaration