function fstatSync
Usage in Deno
```typescript import { fstatSync } from "node:node__fs.d.ts"; ```
fstatSync(fd: number,options?: StatOptions & { bigint?: false | undefined; },): Stats
Retrieves the `fs.Stats` for the file descriptor.
See the POSIX [`fstat(2)`](http://man7.org/linux/man-pages/man2/fstat.2.html) documentation for more detail.
optional
options: StatOptions & { bigint?: false | undefined; }
fstatSync(fd: number,options: StatOptions & { bigint: true; },): BigIntStats
options: StatOptions & { bigint: true; }
fstatSync(fd: number,options?: StatOptions,): Stats | BigIntStats
optional
options: StatOptions