/** * 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 will be spoofed. Possible values: * 'noise': Add some noise to the WebGL generation * 'block': Completely block the 3D API * 'off': Turn off the spoofing, use the original settings * @export */ export declare const WebglSpoofingType: { readonly Noise: "noise"; readonly Block: "block"; readonly Off: "off"; }; export type WebglSpoofingType = (typeof WebglSpoofingType)[keyof typeof WebglSpoofingType]; export declare function instanceOfWebglSpoofingType(value: any): boolean; export declare function WebglSpoofingTypeFromJSON(json: any): WebglSpoofingType; export declare function WebglSpoofingTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebglSpoofingType; export declare function WebglSpoofingTypeToJSON(value?: WebglSpoofingType | null): any; export declare function WebglSpoofingTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): WebglSpoofingType;