Genotype API Documentation - v0.1.0
    Preparing search index...

    Interface FileIOContext

    File I/O operation context for error handling and debugging Provides comprehensive context for troubleshooting I/O issues

    interface FileIOContext {
        filePath: string;
        operation: "read" | "write" | "stat" | "open" | "close" | "seek";
        runtime: "node" | "deno" | "bun";
        startTime: number;
        position?: number;
        bufferSize: number;
        context?: Record<string, unknown>;
    }
    Index

    Properties

    filePath: string

    File path being operated on

    operation: "read" | "write" | "stat" | "open" | "close" | "seek"

    Type of operation being performed

    runtime: "node" | "deno" | "bun"

    Runtime environment

    startTime: number

    Operation start timestamp

    position?: number

    Current position in file

    bufferSize: number

    Buffer size being used

    context?: Record<string, unknown>

    Additional context data