mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-24 13:44:54 +00:00
8 lines
195 B
TypeScript
8 lines
195 B
TypeScript
export interface DynamicTextProps {
|
|
value: any
|
|
format?: 'text' | 'number' | 'currency' | 'date' | 'time' | 'datetime' | 'boolean'
|
|
currency?: string
|
|
locale?: string
|
|
className?: string
|
|
}
|