UNPKG

hadron-document

Version:
22 lines 614 B
import StandardEditor from './standard'; import type { Element } from '../element'; /** * CRUD editor for int32 values. */ export default class Int32Editor extends StandardEditor { /** * Create the editor with the element. * * @param {Element} element - The hadron document element. */ constructor(element: Element); /** * 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; } //# sourceMappingURL=int32.d.ts.map