@furo/ui5
Version:
SAP UI5 Web Components data bindings for furo-web
22 lines (19 loc) • 367 B
JavaScript
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();