markers finished, subsecond precision supported

This commit is contained in:
David Brazda
2024-06-11 09:06:56 +02:00
parent 23fbf3a23d
commit 9bd4d089b5
2 changed files with 73 additions and 25 deletions

View File

@ -63,6 +63,7 @@ def js_json(d: dict):
def jbool(b: bool): return 'true' if b is True else 'false' if b is False else None
MARKER_TYPE = Literal['entries', 'exits']
LINE_STYLE = Literal['solid', 'dotted', 'dashed', 'large_dashed', 'sparse_dotted']