mirror of
https://github.com/odoo-ide/odoo-stubs.git
synced 2025-05-08 16:52:26 +03:00
9 lines
299 B
Python
9 lines
299 B
Python
from typing import Literal
|
|
|
|
from ..api import Environment
|
|
from ..http import Session
|
|
|
|
def check(db: str, uid: int, passwd: str) -> None: ...
|
|
def compute_session_token(session: Session, env: Environment) -> str | Literal[False]: ...
|
|
def check_session(session: Session, env: Environment) -> bool: ...
|