/** * 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. */ /** * When the WebGL Meta spoofing is used, these settings can override the values in the fingerprint. * @export * @interface WebglMetaSpoofingOptions */ export interface WebglMetaSpoofingOptions { /** * Unmasked vendor * @type {string} * @memberof WebglMetaSpoofingOptions */ vendor?: string | null; /** * Unmasked renderer * @type {string} * @memberof WebglMetaSpoofingOptions */ renderer?: string | null; } /** * Check if a given object implements the WebglMetaSpoofingOptions interface. */ export declare function instanceOfWebglMetaSpoofingOptions(value: object): value is WebglMetaSpoofingOptions; export declare function WebglMetaSpoofingOptionsFromJSON(json: any): WebglMetaSpoofingOptions; export declare function WebglMetaSpoofingOptionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebglMetaSpoofingOptions; export declare function WebglMetaSpoofingOptionsToJSON(json: any): WebglMetaSpoofingOptions; export declare function WebglMetaSpoofingOptionsToJSONTyped(value?: WebglMetaSpoofingOptions | null, ignoreDiscriminator?: boolean): any;