AMD:
require(["esri/tables/support/elements"], (elements) => { /* code goes here */ });
ESM:
import * as elements from "@arcgis/core/tables/support/elements.js";
Object:
esri/tables/support/elements
Since: ArcGIS Maps SDK for JavaScript 4.31
A convenience module for importing AttributeTableElement classes when developing with TypeScript. For example, rather than importing table elements one at a time like this:
import TableAttachmentElement from "esri/tables/elements/AttributeTableAttachmentElement";
import TableFieldElement from "esri/tables/elements/AttributeTableFieldElement";
import TableGroupElement from "esri/tables/elements/AttributeTableGroupElement";
import TableRelationshipElement from "esri/tables/elements/AttributeTableRelationshipElement";
You can use this module to import them on a single line:
import { AttributeTableAttachmentElement, AttributeTableFieldElement, AttributeTableGroupElement, AttributeTableRelationshipElement } from "esri/tables/elements";
This module also allows you to implement type guards on the attribute table elements, making your code smarter.
import { AttributeTableElement } from "esri/tables/elements";
function logTableElement(element: AttributeTableElement): void {
if (element.type === "field") {
console.log("Attribute table element type is field");
}
else {
console.log("The value is not a table field element.")
}
}