Ooga / extensions /adetailer /sd_webui /script_callbacks.py
toto10's picture
c1a010c78919f8efef07b18490f90b54ce38605a218a48907aa972358dd0fbc1
9c5ffc0
raw
history blame
323 Bytes
from __future__ import annotations
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from typing import Callable
def on_ui_settings(callback: Callable):
pass
def on_after_component(callback: Callable):
pass
else:
from modules.script_callbacks import on_after_component, on_ui_settings