@arcgis/coding-components
Version:
Contains components for editing code in different languages. The currently supported languages are html, css, json, TypeScript, JavaScript, and Arcade.
13 lines (12 loc) • 574 B
TypeScript
/// <reference types="@arcgis/core/interfaces.d.ts" />
import { ApiValueVariableType } from '@arcgis/languages-api-utils';
/**
* Returns an icon name for the field type
*/
export declare function fieldTypeToIconName(field: __esri.Field): string;
/**
* Returns the ApiValueVariable type for the given field.
*/
export declare function fieldTypeToApiValueVarType(field: __esri.Field): ApiValueVariableType;
export declare function supportedFields(fields: __esri.Field[] | null | undefined): __esri.Field[];
export declare function fieldAlias(field: __esri.Field): string;