mirror of
https://github.com/odoo-ide/odoo-stubs.git
synced 2025-05-08 16:52:26 +03:00
22 lines
502 B
Python
22 lines
502 B
Python
from typing import Any
|
|
|
|
class lazy_property:
|
|
fget: Any
|
|
def __init__(self, fget) -> None: ...
|
|
def __get__(self, obj, cls): ...
|
|
@property
|
|
def __doc__(self): ...
|
|
@staticmethod
|
|
def reset_all(obj) -> None: ...
|
|
|
|
class lazy_classproperty(lazy_property):
|
|
def __get__(self, obj, cls): ...
|
|
|
|
def conditional(condition, decorator): ...
|
|
def synchronized(lock_attr: str = ...): ...
|
|
|
|
class _ClassProperty(property):
|
|
def __get__(self, cls, owner): ...
|
|
|
|
def classproperty(func): ...
|