@furo/ui5
Version:
SAP UI5 Web Components data bindings for furo-web
18 lines (16 loc) • 623 B
JavaScript
import { DisplayInt64 } from './display-int64.js';
/**
* `display-google-protobuf-boolvalue`
* The display-google-protobuf-boolvalue component displays a FieldNode of type `google.protobuf.Int64Value` in read only mode.
*
* Every display-xxx component should implement the following API:
* - function: bindData(fieldNode){...}
*
* @summary display renderer for `google.protobuf.Int64Value`
* @element display-google-protobuf-int64Value
*/
export class DisplayGoolgeProtobufIn64value extends DisplayInt64 {}
window.customElements.define(
'display-google-protobuf-int64value',
DisplayGoolgeProtobufIn64value
);