6 lines
134 B
Python
6 lines
134 B
Python
"""Type annotations for evglint."""
|
|
from typing import Callable, List
|
|
|
|
LintRule = Callable[[dict], List["LintError"]]
|
|
LintError = str
|