UNPKG

@arcgis/coding-components

Version:

Contains components for editing code in different languages. The currently supported languages are html, css, json, TypeScript, JavaScript, and Arcade.

16 lines (14 loc) 577 B
/// <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 */ 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>; }