/** * 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 WebglMeta */ export interface WebglMeta { /** * The UnmaskedVendor field from WebGL context * @type {string} * @memberof WebglMeta */ vendor: string; /** * The UnmaskedRenderer field from WebGL context * @type {string} * @memberof WebglMeta */ renderer?: string | null; } /** * Check if a given object implements the WebglMeta interface. */ export declare function instanceOfWebglMeta(value: object): value is WebglMeta; export declare function WebglMetaFromJSON(json: any): WebglMeta; export declare function WebglMetaFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebglMeta; export declare function WebglMetaToJSON(json: any): WebglMeta; export declare function WebglMetaToJSONTyped(value?: WebglMeta | null, ignoreDiscriminator?: boolean): any;