Skip to content

Index

TimelineEvent module-attribute

TimelineEvent = AssetReference | Scene

A type alias for a timeline event, which can be an asset reference or a scene.

AssetInputType module-attribute

AssetInputType: TypeAlias = (
    Mapping[str, Any]
    | Asset
    | Sequence[dict[str, Any]]
    | Sequence[Asset]
)

A type alias for the input type of an asset.

TimelineEventInputType module-attribute

TimelineEventInputType: TypeAlias = (
    Mapping[str, Any]
    | TimelineEvent
    | Sequence[dict[str, Any]]
    | Sequence[TimelineEvent]
)

A type alias for the input type of a timeline event.