/** * 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 canvas will be spoofed. Possible values: * 'intelligent': Use intelligent canvas spoofing. This will result non-unique canvas fingerprints. * 'noise': Add some noise to canvas generation. * 'block': Completely block the 2D API. * 'off': Turn off the spoofing, use the original settings. * @export */ export declare const CanvasSpoofingType: { readonly Intelligent: "intelligent"; readonly Noise: "noise"; readonly Block: "block"; readonly Off: "off"; }; export type CanvasSpoofingType = (typeof CanvasSpoofingType)[keyof typeof CanvasSpoofingType]; export declare function instanceOfCanvasSpoofingType(value: any): boolean; export declare function CanvasSpoofingTypeFromJSON(json: any): CanvasSpoofingType; export declare function CanvasSpoofingTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): CanvasSpoofingType; export declare function CanvasSpoofingTypeToJSON(value?: CanvasSpoofingType | null): any; export declare function CanvasSpoofingTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): CanvasSpoofingType;