mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-09 13:02:22 +08:00
Add missing third party modules (#8321)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com> Co-authored-by: hauntsaninja <> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
20
stubs/annoy/annoy/annoylib.pyi
Normal file
20
stubs/annoy/annoy/annoylib.pyi
Normal file
@@ -0,0 +1,20 @@
|
||||
from _typeshed import Incomplete
|
||||
|
||||
class Annoy:
|
||||
f: Incomplete
|
||||
def __init__(self, *args, **kwargs) -> None: ...
|
||||
def add_item(self, *args, **kwargs): ...
|
||||
def build(self, *args, **kwargs): ...
|
||||
def get_distance(self, *args, **kwargs): ...
|
||||
def get_item_vector(self, *args, **kwargs): ...
|
||||
def get_n_items(self, *args, **kwargs): ...
|
||||
def get_n_trees(self, *args, **kwargs): ...
|
||||
def get_nns_by_item(self, *args, **kwargs): ...
|
||||
def get_nns_by_vector(self, *args, **kwargs): ...
|
||||
def load(self, *args, **kwargs): ...
|
||||
def on_disk_build(self, *args, **kwargs): ...
|
||||
def save(self, *args, **kwargs): ...
|
||||
def set_seed(self, *args, **kwargs): ...
|
||||
def unbuild(self, *args, **kwargs): ...
|
||||
def unload(self, *args, **kwargs): ...
|
||||
def verbose(self, *args, **kwargs): ...
|
||||
Reference in New Issue
Block a user