@syncfusion/ej2-inplace-editor
Version:
A package of Essential JS 2 Inplace editor components, which is used to edit and update the value dynamically in server.
22 lines (18 loc) • 469 B
TypeScript
import { ChildProperty, Property } from '@syncfusion/ej2-base';import { TooltipModel } from '@syncfusion/ej2-popups';
/**
* Interface for a class PopupSettings
*/
export interface PopupSettingsModel {
/**
* Specifies title for the editor popup.
*
* @default ''
*/
title?: string;
/**
* Specifies model for editor popup customization like position, animation,etc.
*
* @default null
*/
model?: TooltipModel;
}