UNPKG

@progress/kendo-angular-map

Version:
19 lines (18 loc) 721 B
/**----------------------------------------------------------------------------------------- * 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; }