forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.pyi
More file actions
33 lines (28 loc) · 1.06 KB
/
__init__.pyi
File metadata and controls
33 lines (28 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# -*- python -*-
from typing import Any, List
import tastypie
community = ... # type: Any
dbtemplate = ... # type: Any
doc = ... # type: Any
group = ... # type: Any
iesg = ... # type: Any
ipr = ... # type: Any
liaisons = ... # type: Any
mailinglists = ... # type: Any
mailtrigger = ... # type: Any
meeting = ... # type: Any
message = ... # type: Any
name = ... # type: Any
nomcom = ... # type: Any
person = ... # type: Any
redirects = ... # type: Any
review = ... # type: Any
stats = ... # type: Any
submit = ... # type: Any
utils = ... # type: Any
_api_list = ... # type: List
class ModelResource(tastypie.resources.ModelResource): ...
class Serializer(): ...
class ToOneField(tastypie.fields.ToOneField): ...
class TimedeltaField(tastypie.fields.ApiField): ...
def autodiscover() -> None: ...