Value Options
Type JsfValueOptionsType
is used in many cases. Goal is to describe method of getting value.
interface JsfValueOptionsInterface {
/**
* From other prop.
*/
key?: string;
const?: any;
$eval?: string;
paste?: string;
}
export type JsfValueOptionsType = string | boolean | null | JsfValueOptionsInterface | undefined;
Last updated
Was this helpful?