File: shorthand_box.pyi

package info (click to toggle)
python-box 7.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 572 kB
  • sloc: python: 3,471; makefile: 4
file content (17 lines) | stat: -rw-r--r-- 350 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from typing import Dict

from box.box import Box as Box

class SBox(Box):
    @property
    def dict(self) -> Dict: ...
    @property
    def json(self) -> str: ...
    @property
    def yaml(self) -> str: ...
    @property
    def toml(self) -> str: ...
    def copy(self) -> "SBox": ...
    def __copy__(self) -> "SBox": ...

class DDBox(Box): ...