/** * 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 */ export declare const IndexAction: { readonly Create: "create"; readonly Update: "update"; readonly Upsert: "upsert"; readonly Emplace: "emplace"; }; export type IndexAction = typeof IndexAction[keyof typeof IndexAction]; export declare function instanceOfIndexAction(value: any): boolean; export declare function IndexActionFromJSON(json: any): IndexAction; export declare function IndexActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): IndexAction; export declare function IndexActionToJSON(value?: IndexAction | null): any; export declare function IndexActionToJSONTyped(value: any, ignoreDiscriminator: boolean): IndexAction;