devextreme-react
Version:
DevExtreme React UI and Visualization Components
48 lines (46 loc) • 1.59 kB
TypeScript
/*!
* devextreme-react
* Version: 24.2.6
* Build date: Mon Mar 17 2025
*
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file in the root of the project for details.
*
* https://github.com/DevExpress/devextreme-react
*/
import { ITemplateMeta } from '../../template';
declare enum ElementType {
Option = 0,
Template = 1,
Unknown = 2
}
interface IExpectedChild {
optionName: string;
isCollectionItem: boolean;
}
interface IOptionDescriptor {
isCollection: boolean;
name: string;
templates: ITemplateMeta[];
initialValuesProps: Record<string, string>;
predefinedValuesProps: Record<string, any>;
expectedChildren: Record<string, IExpectedChild>;
}
interface IOptionElement {
type: ElementType.Option;
descriptor: IOptionDescriptor;
props: Record<string, any>;
}
declare function getOptionInfo(elementDescriptor: IElementDescriptor, props: Record<string, any>, parentExpectedChildren?: Record<string, IExpectedChild>): IOptionElement;
declare function getElementType(element: React.ReactNode): ElementType;
interface IElementDescriptor {
OptionName: string;
IsCollectionItem?: boolean;
DefaultsProps?: Record<string, string>;
TemplateProps?: ITemplateMeta[];
PredefinedProps?: Record<string, any>;
ExpectedChildren?: Record<string, IExpectedChild>;
}
export { getElementType, getOptionInfo, ElementType, IOptionElement, IExpectedChild, IElementDescriptor, IOptionDescriptor, };