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,) => void Return Type #
void Overload 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,) => void Return Type #
void