devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
23 lines (21 loc) • 799 B
TypeScript
/**
* DevExtreme (core/templates/template.d.ts)
* Version: 20.1.7
* Build date: Tue Aug 25 2020
*
* Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
/** Warning! This type is used for internal purposes. Do not import it directly. */
export interface dxTemplateOptions {
/** Specifies the name of the template. */
name?: string;
}
/** A custom template's markup. */
export type dxTemplate = Template;
/** Warning! This type is used for internal purposes. Do not import it directly. */
export class Template {
constructor(options?: dxTemplateOptions)
}
/** A template notation used to specify templates for widget elements. */
export type template = string | Function | Element | JQuery;