Files
low-code-react-app-b/src/lib/json-ui/interfaces/dynamic-text.ts

8 lines
195 B
TypeScript

export interface DynamicTextProps {
value: any
format?: 'text' | 'number' | 'currency' | 'date' | 'time' | 'datetime' | 'boolean'
currency?: string
locale?: string
className?: string
}