@open-kappa/myjson
Version:
A simple JSON management library.
15 lines (14 loc) • 358 B
TypeScript
/**
* @brief Hidden properties of MyJsonFlex.
*/
declare class MyJsonFlexProperties<Element> {
/** The validator element. */
element: Element;
/**
* @brief Constructor.
* @param {Element} element The validator element.
*/
constructor(element: Element);
}
export { MyJsonFlexProperties };
export default MyJsonFlexProperties;