Type Alias: RIntegerField
ts
type RIntegerField = typeof RIntegerField & ComponentPublicInstance;Type definition for the RIntegerField component instance.
Provides type-safe access to the component's public interface, including all props, slots, emits, and exposed methods. Useful for programmatic component creation and advanced TypeScript integration.
Example
typescript
import type { RIntegerField } from "./integer";
// Component reference typing
const integerFieldRef = ref<InstanceType<RIntegerField>>();
// Programmatic component creation
const IntegerFieldComponent: RIntegerField = defineComponent({
// ... implementation
});