Files
mongo/buildscripts/evglint/model.py
2021-03-25 16:18:55 +00:00

6 lines
134 B
Python

"""Type annotations for evglint."""
from typing import Callable, List
LintRule = Callable[[dict], List["LintError"]]
LintError = str