IndexData

This type is an object with this TypeScript type definition:

type IndexData = {
    type: "Gin" | "Gist", 
    indexes: { 
        language: string, 
        field: string, 
        weight: string 
    }[]
};

Last updated