@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 `uint32`
* @element celledit-uint32
*/
export class CelleditUint32 extends CelleditInt32 {
/**
* @private
*/
static get metadata() {
return { tag: 'celledit-uint32' };
}
static get styles() {
return super.styles;
}
}
CelleditUint32.define();