mirror of
https://github.com/facefusion/facefusion-comfyui.git
synced 2026-04-23 01:26:00 +02:00
9 lines
277 B
Python
9 lines
277 B
Python
from typing import Any, Dict, Literal, TypeAlias
|
|
|
|
InputTypes : TypeAlias = Dict[str, Any]
|
|
|
|
NodeClassMapping : TypeAlias = Dict[str, Any]
|
|
NodeDisplayNameMapping : TypeAlias = Dict[str, str]
|
|
|
|
FaceSwapperModel = Literal['hyperswap_1a_256', 'hyperswap_1b_256', 'hyperswap_1c_256']
|