Type Alias: RBigIntFieldProps
ts
type RBigIntFieldProps = ExtractPublicPropTypes<
ReturnType<typeof makeRBigIntFieldProps>
>;Type definition for RBigIntField component props.
Extracted from the props factory function to provide type safety for component usage and prop validation.
Example
typescript
const props: RBigIntFieldProps = {
modelValue: "123456789012345678901234567890",
label: "Large Number",
format: "0,0",
jsonSafe: true,
};