mirror of
https://github.com/odoo-ide/odoo-stubs.git
synced 2025-05-08 16:52:26 +03:00
16 lines
402 B
Python
16 lines
402 B
Python
from typing import Callable
|
|
|
|
from . import Command
|
|
|
|
eprint: Callable
|
|
|
|
class Db(Command):
|
|
name: str
|
|
def run(self, cmdargs): ...
|
|
def load(self, args) -> None: ...
|
|
def dump(self, args) -> None: ...
|
|
def duplicate(self, args) -> None: ...
|
|
def rename(self, args) -> None: ...
|
|
def drop(self, args) -> None: ...
|
|
def _check_target(self, target, *, delete_if_exists) -> None: ...
|