Same as #608, but for the start_offset and stop_offset keys in StartStopEntry:
|
class StartStopEntry(TypedDict): |
|
""" |
|
Configuration for a single dimension's previewing in terms of start/stop values. |
|
""" |
|
|
|
start: Union[int, str] |
|
start_offset: Optional[int] |
|
stop: Union[int, str] |
|
stop_offset: Optional[int] |
Optional[int] should be replaced with NotRequired[Optional[int]] to correctly reflect the state of the dict that can be received from the start/stop config for a dimension in a preview parameter value.