/** * kameleo-local-api * You can use the following API endpoints to communicate with the local running Kameleo programmatically. * * The version of the OpenAPI document: 4.4.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 * @interface Browser */ export interface Browser { /** * Product of the browser. Possible values are 'chrome', 'firefox', 'edge', 'safari'. * @type {string} * @memberof Browser */ product: string; /** * Major version of the browser. * @type {number} * @memberof Browser */ major: number; /** * Exact version of the browser. * @type {string} * @memberof Browser */ version: string; } /** * Check if a given object implements the Browser interface. */ export declare function instanceOfBrowser(value: object): value is Browser; export declare function BrowserFromJSON(json: any): Browser; export declare function BrowserFromJSONTyped(json: any, ignoreDiscriminator: boolean): Browser; export declare function BrowserToJSON(json: any): Browser; export declare function BrowserToJSONTyped(value?: Browser | null, ignoreDiscriminator?: boolean): any;