/** * @license * Copyright 2018-2026 Advanced Visual Systems Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * This product includes software developed at * Advanced Visual Systems Inc. (http://www.avs.com) */ import { LitElement } from 'lit'; declare const AvsGoInfo_base: (new (...args: any[]) => import("./avs-element-mixin.js").AvsElementMixinInterface) & typeof LitElement; /** * `avs-go-info` is a Lit element which requests data by instancing * the `infoName` class on the AVS/Go server application running at `url`. * After setting both these properties call the `updateInfo()` method to send the request. * Attach a listener for the `avs-go-info-response` event to receive the response. * * Special case: use an `infoName` of `GetServerInfo` to request a listing of * data sources, themes, scenes, info and dynamic HTML available at `url`. * * @customElement * @lit * @applysMixin AvsElementMixin */ export declare class AvsGoInfo extends AvsGoInfo_base { /** The URL to an instance of AVS/Go server application. */ url: string; /** Name of the data source registered in the library map on the server. */ dataSourceName?: string; /** User properties as JSON passed directly to the data source on the server. */ dataSourceUserProperties?: string; /** The name of the info registered in the library map on the server. */ infoName?: string; /** User properties as JSON passed directly to the info on the server. */ infoUserProperties?: string; /** * Send the request to the server. */ updateInfo(): void; } declare global { interface HTMLElementTagNameMap { 'avs-go-info': AvsGoInfo; } } export {}; //# sourceMappingURL=avs-go-info.d.ts.map