massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / aws-xray-sdk / aws_xray_sdk / core / utils / atomic_counter.pyi
1 from typing import Any
2
3 class AtomicCounter:
4     value: Any
5     def __init__(self, initial: int = ...) -> None: ...
6     def increment(self, num: int = ...): ...
7     def decrement(self, num: int = ...): ...
8     def get_current(self): ...
9     def reset(self): ...