@runno/wasi
    Preparing search index...

    Type Alias DirEntry

    A single directory entry as seen by fd_readdir.

    type DirEntry = {
        filetype: WASIX32v1.FileType;
        ino: bigint;
        name: string;
        next: bigint;
    }
    Index

    Properties

    Properties

    File type of the entry.

    ino: bigint

    Inode serial number.

    name: string

    Entry name (unencoded).

    next: bigint

    Monotonic cookie used to resume readdir across calls.