mirror of
https://github.com/odoo-ide/odoo-stubs.git
synced 2025-05-08 16:52:26 +03:00
Update stubs
This commit is contained in:
@@ -1,11 +1,14 @@
|
|||||||
from typing import Any
|
from re import Pattern
|
||||||
|
from typing import Any, Iterable
|
||||||
|
|
||||||
INLINE_TEMPLATE_REGEX: Any
|
from markupsafe import Markup
|
||||||
|
|
||||||
|
INLINE_TEMPLATE_REGEX: Pattern
|
||||||
|
|
||||||
def relativedelta_proxy(*args, **kwargs): ...
|
def relativedelta_proxy(*args, **kwargs): ...
|
||||||
|
|
||||||
template_env_globals: Any
|
template_env_globals: dict[str, Any]
|
||||||
|
|
||||||
def parse_inline_template(text): ...
|
def parse_inline_template(text: str) -> list[tuple[str, str]]: ...
|
||||||
def convert_inline_template_to_qweb(template): ...
|
def convert_inline_template_to_qweb(template: str) -> Markup: ...
|
||||||
def render_inline_template(template_instructions, variables): ...
|
def render_inline_template(template_instructions: Iterable[tuple[str, str]], variables: dict) -> str: ...
|
||||||
|
|||||||
Reference in New Issue
Block a user