@arcgis/coding-components
Version:
Contains components for editing code in different languages. The currently supported languages are html, css, json, TypeScript, JavaScript, and Arcade.
20 lines (18 loc) • 618 B
TypeScript
/// <reference types="../../index.d.ts" />
import { PropertyValues } from 'lit';
import { PublicLitElement as LitElement, TargetedEvent, JsxNode } from '@arcgis/lumina';
/** @private */
export declare class SqlExpressionFields extends LitElement {
/**
* Loading state
*
* @default false
*/
loading: boolean;
/** The model id */
modelId: string | undefined;
/** Emitted when close action has been activated */
readonly arcgisClose: TargetedEvent<this, void>;
/** Emitted when a field has been selected */
readonly arcgisFieldSelected: TargetedEvent<this, string>;
}