8 lines
78 B
Python
8 lines
78 B
Python
from typing import Literal
|
|
|
|
|
|
InputMode = Literal[
|
|
"image",
|
|
"video",
|
|
]
|