UNPKG

@furo/ui5

Version:
22 lines (19 loc) 367 B
import { CelleditInt32 } from './celledit-int32.js'; /** * * * @summary celledit renderer for `uint64` * @element celledit-uint64 */ export class CelleditUint64 extends CelleditInt32 { /** * @private */ static get metadata() { return { tag: 'celledit-uint64' }; } static get styles() { return super.styles; } } CelleditUint64.define();