erg/crates/erg_compiler/lib/pystd/shutil.d.er
Shunsuke Shibayama 9454896d5a WIP
2023-08-17 16:43:26 +09:00

13 lines
406 B
Python

._WINDOWS: Bool
.copyfile!: (src: PathLike, dst: PathLike,) => NoneType
.copy!: (src: PathLike, dst: PathLike,) => NoneType
.copytree!: (src: PathLike, dst: PathLike,) => NoneType
.disk_usage!: (path: PathLike,) => NamedTuple {
.total = Nat
.used = Nat
.free = Nat
}
.rmtree!: (path: PathLike,) => NoneType
.move!: (src: PathLike, dst: PathLike) => Str
.which!: (cmd: Str,) => Str or NoneType