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