/** * 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. */ import type { StemmingDictionaryWordsInner } from './StemmingDictionaryWordsInner.js'; /** * * @export * @interface StemmingDictionary */ export interface StemmingDictionary { /** * Unique identifier for the dictionary * @type {string} * @memberof StemmingDictionary */ id: string; /** * List of word mappings in the dictionary * @type {Array} * @memberof StemmingDictionary */ words: Array; } /** * Check if a given object implements the StemmingDictionary interface. */ export declare function instanceOfStemmingDictionary(value: object): value is StemmingDictionary; export declare function StemmingDictionaryFromJSON(json: any): StemmingDictionary; export declare function StemmingDictionaryFromJSONTyped(json: any, ignoreDiscriminator: boolean): StemmingDictionary; export declare function StemmingDictionaryToJSON(json: any): StemmingDictionary; export declare function StemmingDictionaryToJSONTyped(value?: StemmingDictionary | null, ignoreDiscriminator?: boolean): any;