UNPKG

@progress/sitefinity-widget-designers-sdk

Version:

This package aims to create a parity for widget designer generation similar to the [autogenerated widget designers](https://www.progress.com/documentation/sitefinity-cms/next.js-autogenerated-field-types) in Sitefinity. Due to some limitations in Typescri

10 lines (9 loc) 767 B
import { CategoryModel, MetadataModel, PropertyModel, SectionModel } from '../metadata/entity-metadata-generator'; export declare function verifyPropertyKeyValues(property: any, expectedValues: { [key: string]: any; }): void; export declare function verifyFullDesigner(actual: MetadataModel, expected: MetadataModel): void; export declare function verifyCategory(widgetName: string, actual: CategoryModel, expected: CategoryModel): void; export declare function verifySection(widgetName: string, actual: SectionModel, expected: SectionModel): void; export declare function verifyProperty(actual: PropertyModel, expected: PropertyModel): void; export declare function verifyJsonProperty(propName: string, actual: string | object, expected: string | object): void;