PropertyMapType
interface PropertyMapType {
constraints?: { [key: string]: { [key: string]: any } };
default: string[];
keywords: string[];
mapping?: Record<string, string>;
multiple?: boolean;
prefix?: {
typ:
| "toString"
| "toLocaleString"
| "toFixed"
| "toExponential"
| "toPrecision"
| "valueOf";
val: string;
};
previous?: string;
required?: boolean;
separator?: {
typ: | "toString"
| "toLocaleString"
| "toFixed"
| "toExponential"
| "toPrecision"
| "valueOf";
};
types: string[];
}
constraints?: { [key: string]: { [key: string]: any } };
default: string[];
keywords: string[];
mapping?: Record<string, string>;
multiple?: boolean;
prefix?: {
typ:
| "toString"
| "toLocaleString"
| "toFixed"
| "toExponential"
| "toPrecision"
| "valueOf";
val: string;
};
previous?: string;
required?: boolean;
separator?: {
typ: | "toString"
| "toLocaleString"
| "toFixed"
| "toExponential"
| "toPrecision"
| "valueOf";
};
types: string[];
}
Index
Properties
Properties
Optionalconstraints
constraints?: { [key: string]: { [key: string]: any } }
default
default: string[]
keywords
keywords: string[]
Optionalmapping
mapping?: Record<string, string>
Optionalmultiple
multiple?: boolean
Optionalprefix
prefix?: {
typ:
| "toString"
| "toLocaleString"
| "toFixed"
| "toExponential"
| "toPrecision"
| "valueOf";
val: string;
}
typ:
| "toString"
| "toLocaleString"
| "toFixed"
| "toExponential"
| "toPrecision"
| "valueOf";
val: string;
}
Optionalprevious
previous?: string
Optionalrequired
required?: boolean
Optionalseparator
separator?: {
typ:
| "toString"
| "toLocaleString"
| "toFixed"
| "toExponential"
| "toPrecision"
| "valueOf";
}
typ:
| "toString"
| "toLocaleString"
| "toFixed"
| "toExponential"
| "toPrecision"
| "valueOf";
}
types
types: string[]