@runno/wasi
    Preparing search index...

    Type Alias Filestat

    Filestat record — file / directory attributes.

    JS-native shape of preview1's filestat. Raw pointers and numeric hashes never leave the WASIX class — the provider works with this structured view and wasix.ts marshals it into guest memory.

    type Filestat = {
        dev: bigint;
        filetype: WASIX32v1.FileType;
        ino: bigint;
        nlink: bigint;
        size: bigint;
        timestamps: FsTimestamps;
    }
    Index

    Properties

    dev: bigint

    Device ID of device containing the file.

    File type (regular / directory / …).

    ino: bigint

    Inode — unique identifier within its filesystem.

    nlink: bigint

    Number of hard links.

    size: bigint

    Size in bytes.

    timestamps: FsTimestamps

    Last data access / modification / status-change timestamps.