@progress/kendo-angular-map
Version:
Kendo UI Map for Angular
19 lines (18 loc) • 721 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ViewContainerRef } from '@angular/core';
/**
* Defines the settings for the tooltip popup.
*/
export interface PopupSettings {
/**
* Sets the container to which you want to append the popup.
*/
appendTo?: ViewContainerRef;
/**
* Sets the class or classes for the popup.
*/
popupClass?: string | Array<string> | Object;
}