mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-31 20:24:27 -04:00
12 lines
195 B
Python
12 lines
195 B
Python
from typing import Literal
|
|
|
|
type ExtraKind = (
|
|
Literal["other"] |
|
|
Literal["trailer"] |
|
|
Literal["interview"] |
|
|
Literal["behind-the-scene"] |
|
|
Literal["deleted-scene"] |
|
|
Literal["blooper"]
|
|
)
|
|
|