function fstat
          
Usage in Deno
import { fstat } from "node:fs";
fstat(fd: number,callback: (err: ErrnoException | null,stats: Stats,) => void,): void 
      
fstat(fd: number,options: (StatOptions & { bigint?: false | undefined;  }) | undefined,callback: (err: ErrnoException | null,stats: Stats,) => void,): void 
      
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 
      
options: StatOptions & { bigint: true;  }
      
    
callback: (err: ErrnoException | null,stats: BigIntStats,) => void
      
    void
      
    
fstat(fd: number,options: StatOptions | undefined,callback: (err: ErrnoException | null,stats: Stats | BigIntStats,) => void,): void 
      
options: StatOptions | undefined
      
    
callback: (err: ErrnoException | null,stats: Stats | BigIntStats,) => void
      
    void