/** * 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. */ /** * Specifies how the WebGL vendor and renderer will be spoofed. Possible values: * 'automatic': The vendor and renderer values comes from the fingerprint. * 'manual': Manually configure WebGL metadata. For optimal results, choose a video card model similar to your device's to ensure realistic * profile masking. * 'off': Turn off the spoofing, use the original settings * @export */ export declare const WebglMetaSpoofingType: { readonly Automatic: "automatic"; readonly Manual: "manual"; readonly Off: "off"; }; export type WebglMetaSpoofingType = (typeof WebglMetaSpoofingType)[keyof typeof WebglMetaSpoofingType]; export declare function instanceOfWebglMetaSpoofingType(value: any): boolean; export declare function WebglMetaSpoofingTypeFromJSON(json: any): WebglMetaSpoofingType; export declare function WebglMetaSpoofingTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebglMetaSpoofingType; export declare function WebglMetaSpoofingTypeToJSON(value?: WebglMetaSpoofingType | null): any; export declare function WebglMetaSpoofingTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): WebglMetaSpoofingType;