function statfs
Overload 1
#statfs(): voidOverload 2
#statfs(path: PathLike,options: (StatFsOptions & { bigint?: false | undefined; }) | undefined,callback: (err: ErrnoException | null,stats: StatsFs,) => void,): voidOverload 3
#statfs(path: PathLike,options: StatFsOptions & { bigint: true; },callback: (err: ErrnoException | null,stats: BigIntStatsFs,) => void,): voidParameters #
#options: StatFsOptions & { bigint: true; }#callback: (err: ErrnoException | null,stats: BigIntStatsFs,) => voidReturn Type #
voidOverload 4
#statfs(path: PathLike,options: StatFsOptions | undefined,callback: (err: ErrnoException | null,stats: StatsFs | BigIntStatsFs,) => void,): voidParameters #
#options: StatFsOptions | undefined#callback: (err: ErrnoException | null,stats: StatsFs | BigIntStatsFs,) => voidReturn Type #
void