mirror of
https://github.com/soxoj/maigret.git
synced 2026-09-20 08:47:42 +02:00
12 lines
211 B
Python
12 lines
211 B
Python
from typing import Callable, List, Dict, Tuple, Any
|
|
|
|
|
|
# search query
|
|
QueryDraft = Tuple[Callable, List, Dict]
|
|
|
|
# options dict
|
|
QueryOptions = Dict[str, Any]
|
|
|
|
# TODO: throw out
|
|
QueryResultWrapper = Dict[str, Any]
|