mirror of
https://github.com/odoo-ide/odoo-stubs.git
synced 2025-05-08 16:52:26 +03:00
16 lines
384 B
Python
16 lines
384 B
Python
from enum import IntEnum
|
|
|
|
from ..sql_db import Cursor
|
|
|
|
def is_initialized(cr: Cursor) -> bool: ...
|
|
def initialize(cr: Cursor) -> None: ...
|
|
def create_categories(cr: Cursor, categories: list[str]) -> int | None: ...
|
|
|
|
class FunctionStatus(IntEnum):
|
|
MISSING: int
|
|
PRESENT: int
|
|
INDEXABLE: int
|
|
|
|
def has_unaccent(cr: Cursor) -> bool: ...
|
|
def has_trigram(cr: Cursor) -> bool: ...
|