UNPKG

@vectorize-io/vectorize-client

Version:
34 lines (33 loc) 1.02 kB
/** * 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. */ import type { SUPABASEAuthConfig } from './SUPABASEAuthConfig'; /** * * @export * @interface Supabase1 */ export interface Supabase1 { /** * * @type {SUPABASEAuthConfig} * @memberof Supabase1 */ config?: SUPABASEAuthConfig; } /** * Check if a given object implements the Supabase1 interface. */ export declare function instanceOfSupabase1(value: object): value is Supabase1; export declare function Supabase1FromJSON(json: any): Supabase1; export declare function Supabase1FromJSONTyped(json: any, ignoreDiscriminator: boolean): Supabase1; export declare function Supabase1ToJSON(json: any): Supabase1; export declare function Supabase1ToJSONTyped(value?: Supabase1 | null, ignoreDiscriminator?: boolean): any;