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