/** * Typesense API * An open source search engine for building delightful search experiences. * * The version of the OpenAPI document: 30.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface SearchResultHitTextMatchInfo */ export interface SearchResultHitTextMatchInfo { /** * * @type {string} * @memberof SearchResultHitTextMatchInfo */ bestFieldScore?: string; /** * * @type {number} * @memberof SearchResultHitTextMatchInfo */ bestFieldWeight?: number; /** * * @type {number} * @memberof SearchResultHitTextMatchInfo */ fieldsMatched?: number; /** * * @type {number} * @memberof SearchResultHitTextMatchInfo */ numTokensDropped?: number; /** * * @type {string} * @memberof SearchResultHitTextMatchInfo */ score?: string; /** * * @type {number} * @memberof SearchResultHitTextMatchInfo */ tokensMatched?: number; /** * * @type {number} * @memberof SearchResultHitTextMatchInfo */ typoPrefixScore?: number; } /** * Check if a given object implements the SearchResultHitTextMatchInfo interface. */ export declare function instanceOfSearchResultHitTextMatchInfo(value: object): value is SearchResultHitTextMatchInfo; export declare function SearchResultHitTextMatchInfoFromJSON(json: any): SearchResultHitTextMatchInfo; export declare function SearchResultHitTextMatchInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchResultHitTextMatchInfo; export declare function SearchResultHitTextMatchInfoToJSON(json: any): SearchResultHitTextMatchInfo; export declare function SearchResultHitTextMatchInfoToJSONTyped(value?: SearchResultHitTextMatchInfo | null, ignoreDiscriminator?: boolean): any;