function fstat
#fstat(fd: number,options: (StatOptions & { bigint?: false | undefined; }) | undefined,callback: (err: ErrnoException | null,stats: Stats,) => void,): void
#fstat(fd: number,options: StatOptions & { bigint: true; },callback: (err: ErrnoException | null,stats: BigIntStats,) => void,): void
Parameters #
#fd: number
#options: StatOptions & { bigint: true; }
#callback: (err: ErrnoException | null,stats: BigIntStats,) => void
Return Type #
void
#fstat(fd: number,options: StatOptions | undefined,callback: (err: ErrnoException | null,stats: Stats | BigIntStats,) => void,): void
Parameters #
#fd: number
#options: StatOptions | undefined
#callback: (err: ErrnoException | null,stats: Stats | BigIntStats,) => void
Return Type #
void