UNPKG

@farris/ui-vue

Version:

Farris Vue, a Farris Design based Vue3 component library.

11 lines (10 loc) 386 B
export type TextType = "string" | "date" | "datetime" | "number" | "enum" | "boolean"; export type TextAlignment = "left" | "center" | "right"; export type TextValueType = string | number | boolean; export interface FormNumberOptions { type?: string; formatter?: (val: number) => string; useThousands?: boolean; precision?: number | undefined; [key: string]: any; }