Files @ a362b892cb43
Branch filter:

Location: light9/stubs/usb/libloader.pyi

Drew Perttula
more makefile hacks to turn debug.js into an ES6 module
Ignore-this: 79b9757e462e9007ae4c2c5eaaf9d917

(can't wait for the js build fairy to come clean all this up)
# Stubs for usb.libloader (Python 3)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.

from typing import Any, Optional

class LibraryException(OSError): ...
class LibraryNotFoundException(LibraryException): ...
class NoLibraryCandidatesException(LibraryNotFoundException): ...
class LibraryNotLoadedException(LibraryException): ...
class LibraryMissingSymbolsException(LibraryException): ...

def locate_library(candidates: Any, find_library: Any = ...): ...
def load_library(lib: Any, name: Optional[Any] = ..., lib_cls: Optional[Any] = ...): ...
def load_locate_library(candidates: Any, cygwin_lib: Any, name: Any, win_cls: Optional[Any] = ..., cygwin_cls: Optional[Any] = ..., others_cls: Optional[Any] = ..., find_library: Optional[Any] = ..., check_symbols: Optional[Any] = ...): ...