hadron-document
Version:
Hadron Document
21 lines • 519 B
TypeScript
import StandardEditor from './standard';
/**
* CRUD editor for null values.
*/
export default class NullEditor extends StandardEditor {
/**
* Get the number of characters the value should display.
*
* @param {Boolean} editMode - If the element is being edited.
*
* @returns {Number} The number of characters.
*/
size(): number;
/**
* Get the value being edited.
*
* @returns {Object} The value.
*/
value(): 'null';
}
//# sourceMappingURL=null.d.ts.map