erg/crates/erg_compiler/lib/external/tqdm.d/__init__.d.er
2023-12-06 18:31:03 +09:00

33 lines
856 B
Python

.Tqdm! = 'tqdm': (T: Type) -> ClassType
.Tqdm!(T) <: Iterable T
.Tqdm!(T).
__call__: (
iterable: Iterable(T),
desc := Str,
total := Int or Float,
leave := Bool,
file := File!,
ncols := Int,
mininterval := Float,
maxinterval := Float,
miniters := Int or Float,
ascii := Bool or Str,
disable := Bool,
unit := Str,
unit_scale := Bool or Int or Float,
dynamic_ncols := Bool,
smoothing := Float,
bar_format := Str,
initial := Int or Float,
position := Int,
postfix := {Str: Obj},
unit_divisor := Float,
write_bytes := Bool,
lock_args := [Obj; _],
nrows := Int,
colour := Str,
delay := Float,
gui := Bool,
) -> .Tqdm!(T)
.tqdm = .Tqdm!.__call__