@open-kappa/myjson
Version:
A simple JSON management library.
17 lines (16 loc) • 431 B
TypeScript
/**
* @brief Hidden properties of MyJsonArray.
*/
declare class MyJsonArrayProperties<Element> {
/** The validator element. */
element: Element;
/** The actual array of elements. */
values: Array<Element>;
/**
* @brief Constructor.
* @param {Element} element The validator element.
*/
constructor(element: Element);
}
export { MyJsonArrayProperties };
export default MyJsonArrayProperties;