web-csv-toolbox - v0.14.0
    Preparing search index...

    Type Alias InferFormat<Options>

    InferFormat: Options extends { outputFormat: infer F }
        ? F extends "object" | "array" ? F : "object"
        : "object"

    Helper type to infer the output format from ParseOptions.

    Type Parameters

    • Options

    This type extracts the output format from options and defaults to 'object' if not specified.