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

    Variable CompressionDetectionSchemaConst

    CompressionDetectionSchema: Type<
        (
            In: {
                format: "gzip" | "zstd" | "none";
                confidence: number;
                magicBytes?: unknown;
                extension?: string;
                detectionMethod: "magic-bytes" | "extension" | "hybrid";
            },
        ) => Out<
            {
                format: "gzip"
                | "zstd"
                | "none";
                confidence: number;
                magicBytes?: unknown;
                extension?: string;
                detectionMethod: "magic-bytes" | "extension" | "hybrid";
            },
        >,
        {},
    > = ...

    Compression detection validation schema