blob: 6e0b88aa15772f5fa666cdc8f126861ad23ad6c2 (
plain)
1
2
3
4
5
6
7
8
|
from typing import TypedDict, NotRequired, List, Any, Literal, Optional
LintSeverity = Literal["style"]
class DiagnosticData(TypedDict):
quickfixes: NotRequired[Optional[List[Any]]]
lint_severity: NotRequired[Optional[LintSeverity]]
|