massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / click / click / __init__.pyi
1 from .core import (
2     Argument as Argument,
3     BaseCommand as BaseCommand,
4     Command as Command,
5     CommandCollection as CommandCollection,
6     Context as Context,
7     Group as Group,
8     MultiCommand as MultiCommand,
9     Option as Option,
10     Parameter as Parameter,
11 )
12 from .decorators import (
13     argument as argument,
14     command as command,
15     confirmation_option as confirmation_option,
16     group as group,
17     help_option as help_option,
18     make_pass_decorator as make_pass_decorator,
19     option as option,
20     pass_context as pass_context,
21     pass_obj as pass_obj,
22     password_option as password_option,
23     version_option as version_option,
24 )
25 from .exceptions import (
26     Abort as Abort,
27     BadArgumentUsage as BadArgumentUsage,
28     BadOptionUsage as BadOptionUsage,
29     BadParameter as BadParameter,
30     ClickException as ClickException,
31     FileError as FileError,
32     MissingParameter as MissingParameter,
33     NoSuchOption as NoSuchOption,
34     UsageError as UsageError,
35 )
36 from .formatting import HelpFormatter as HelpFormatter, wrap_text as wrap_text
37 from .globals import get_current_context as get_current_context
38 from .parser import OptionParser as OptionParser
39 from .termui import (
40     clear as clear,
41     confirm as confirm,
42     echo_via_pager as echo_via_pager,
43     edit as edit,
44     get_terminal_size as get_terminal_size,
45     getchar as getchar,
46     launch as launch,
47     pause as pause,
48     progressbar as progressbar,
49     prompt as prompt,
50     secho as secho,
51     style as style,
52     unstyle as unstyle,
53 )
54 from .types import (
55     BOOL as BOOL,
56     FLOAT as FLOAT,
57     INT as INT,
58     STRING as STRING,
59     UNPROCESSED as UNPROCESSED,
60     UUID as UUID,
61     Choice as Choice,
62     DateTime as DateTime,
63     File as File,
64     FloatRange as FloatRange,
65     IntRange as IntRange,
66     ParamType as ParamType,
67     Path as Path,
68     Tuple as Tuple,
69 )
70 from .utils import (
71     echo as echo,
72     format_filename as format_filename,
73     get_app_dir as get_app_dir,
74     get_binary_stream as get_binary_stream,
75     get_os_args as get_os_args,
76     get_text_stream as get_text_stream,
77     open_file as open_file,
78 )
79
80 # Controls if click should emit the warning about the use of unicode
81 # literals.
82 disable_unicode_literals_warning: bool
83
84 __version__: str