@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
33 lines (32 loc) • 902 B
TypeScript
/**
* Vectorize API
* API for Vectorize services (Beta)
*
* The version of the OpenAPI document: 0.1.2
*
*
* 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 Groq1
*/
export interface Groq1 {
/**
* Configuration updates
* @type {object}
* @memberof Groq1
*/
config?: object;
}
/**
* Check if a given object implements the Groq1 interface.
*/
export declare function instanceOfGroq1(value: object): value is Groq1;
export declare function Groq1FromJSON(json: any): Groq1;
export declare function Groq1FromJSONTyped(json: any, ignoreDiscriminator: boolean): Groq1;
export declare function Groq1ToJSON(json: any): Groq1;
export declare function Groq1ToJSONTyped(value?: Groq1 | null, ignoreDiscriminator?: boolean): any;