property
vfs.VirtualFileSystem.lstatSync
lstatSync: {(path: PathLike) => Stats; (path: PathLike, options?: StatOptions & { bigint: false; throwIfNoEntry: true }) => Stats; (path: PathLike, options: StatOptions & { bigint: true; throwIfNoEntry: true }) => BigIntStats; (path: PathLike, options: StatOptions & { bigint: false; throwIfNoEntry: false }) => undefined | Stats; (path: PathLike, options: StatOptions & { bigint: true; throwIfNoEntry: false }) => undefined | BigIntStats; (path: PathLike, options: StatOptions & { throwIfNoEntry: true }) => Stats | BigIntStats; (path: PathLike, options?: StatOptions) => undefined | Stats | BigIntStats}