mirror of
https://github.com/Bing-su/adetailer.git
synced 2026-02-06 16:30:06 +00:00
14 lines
254 B
Python
14 lines
254 B
Python
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 *
|