opendash
Version:
open.DASH data visualization framework
13 lines (10 loc) • 301 B
text/typescript
import * as React from "react";
import { FormElementRuleInterface } from "..";
export interface FormElementInterface {
key: string;
label: string;
type: string;
settings?: Record<string, any>;
style?: React.CSSProperties;
rules?: FormElementRuleInterface | FormElementRuleInterface[];
}