UNPKG

@vectorize-io/vectorize-client

Version:
34 lines (33 loc) 988 B
/** * 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 { GITHUBAuthConfig } from './GITHUBAuthConfig'; /** * * @export * @interface Github1 */ export interface Github1 { /** * * @type {GITHUBAuthConfig} * @memberof Github1 */ config?: GITHUBAuthConfig; } /** * Check if a given object implements the Github1 interface. */ export declare function instanceOfGithub1(value: object): value is Github1; export declare function Github1FromJSON(json: any): Github1; export declare function Github1FromJSONTyped(json: any, ignoreDiscriminator: boolean): Github1; export declare function Github1ToJSON(json: any): Github1; export declare function Github1ToJSONTyped(value?: Github1 | null, ignoreDiscriminator?: boolean): any;