summaryrefslogtreecommitdiffstats
path: root/src/prompt_toolkit/output/__init__.py
blob: 7b90b476bd30f51ecde9005c79427b6d62b5ccee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from .base import DummyOutput, Output
from .color_depth import ColorDepth
from .defaults import create_output

__all__ = [
    # Base.
    "Output",
    "DummyOutput",
    # Color depth.
    "ColorDepth",
    # Defaults.
    "create_output",
]