betty.typing module¶
Providing typing utilities.
- betty.typing.internal(target: betty.typing._T) betty.typing._T [source]¶
Mark a target as internal to Betty.
Anything decorated with
@internal
MAY be used anywhere in Betty’s source code, but MUST be considered private by third-party code.This function is internal (and ironically cannot be decorated with itself).
- Parameters:
target (
typing.TypeVar
(_T
))- Return type:
typing.TypeVar
(_T
)