hadron-document
Version:
Hadron Document
15 lines • 432 B
TypeScript
import StandardEditor from './standard';
import type { Element } from '../element';
export declare const STRING_TYPE = "String";
/**
* CRUD editor for string values.
*/
export default class StringEditor extends StandardEditor {
/**
* Create the editor with the element.
*
* @param {Element} element - The hadron document element.
*/
constructor(element: Element);
}
//# sourceMappingURL=string.d.ts.map