Spaces:
Sleeping
Sleeping
text-generation-webui
/
installer_files
/env
/lib
/python3.11
/site-packages
/altair
/utils
/theme.py
"""Utilities for registering and working with themes""" | |
from .plugin_registry import PluginRegistry | |
from typing import Callable | |
ThemeType = Callable[..., dict] | |
class ThemeRegistry(PluginRegistry[ThemeType]): | |
pass | |