file-collection
    Preparing search index...

    Interface ToIumOptions

    interface ToIumOptions {
        getExtraFiles?: (
            index: ToIumIndexV2,
            fileCollection: FileCollection,
        ) => Iterable<ToIumOptionsExtraFile>;
        includeData?: boolean;
        mimetype?: string;
    }
    Index

    Properties

    getExtraFiles?: (
        index: ToIumIndexV2,
        fileCollection: FileCollection,
    ) => Iterable<ToIumOptionsExtraFile>
    includeData?: boolean

    If true, the data of the files will always be included in the zip.

    true
    
    mimetype?: string

    The mimetype of the zip file. It's put in the zip as the first entry, not compressed in the zip to be able to fast check it with signature and minimal parsing.

    'application/x-ium+zip'