mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-23 15:30:34 -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"]
|
|
)
|
|
|