META-INF.frontend.uibuilder.data.data-source.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of data-source Show documentation
Show all versions of data-source Show documentation
UIBuilder DataSource related POJOs
import { PolymerElement } from '@polymer/polymer/polymer-element.js';
export class DataSource extends PolymerElement {
static get is() {
return "data-source";
}
static get properties() {
return {
name: String,
defaultQuery: String,
hierarchical: {
type: String,
},
datasourceId: String,
};
}
}
customElements.define(DataSource.is, DataSource);