carbon-components-angular
Version:
Next generation components
16 lines (15 loc) • 455 B
TypeScript
import { Dialog } from "./../dialog.component";
/**
* Extend the `Dialog` component to create a tooltip for exposing content.
*/
export declare class Tooltip extends Dialog {
style: string;
/**
* Value is set to `true` if the `Tooltip` is to display a `TemplateRef` instead of a string.
*/
hasContentTemplate: boolean;
/**
* Check whether there is a template for the `Tooltip` content.
*/
onDialogInit(): void;
}