@qualithm/arrow-flight-sql-js - v0.4.3
    Preparing search index...

    Type Alias RuntimeInfo

    Runtime detection result with version information

    type RuntimeInfo = {
        isBrowser: boolean;
        isWorker: boolean;
        runtime: RuntimeType;
        supportsGrpcJs: boolean;
        supportsHttp2: boolean;
        version: string | null;
    }
    Index

    Properties

    isBrowser: boolean

    Whether running in a browser environment

    isWorker: boolean

    Whether running in a worker context (Web Worker, Service Worker, Cloudflare Worker)

    runtime: RuntimeType

    The detected runtime type

    supportsGrpcJs: boolean

    Whether the runtime supports @grpc/grpc-js natively

    supportsHttp2: boolean

    Whether the runtime supports native HTTP/2

    version: string | null

    Runtime version string (e.g., "20.0.0" for Node, "1.0.0" for Bun)