UNPKG

@easyquery/core

Version:

EasyQuery.JS core modules

12 lines (11 loc) 288 B
import { DataType } from "../../types/data_type"; import { EditorTag } from "../../types/editor_tag"; export interface ValueEditorData { id: string; tag: EditorTag; defval: string; rtype: DataType; subType?: DataType; name?: string; sql?: string; }