Skip to content

Type Alias: RUnsignedIntegerField

ts
type RUnsignedIntegerField = typeof RUnsignedIntegerField &
  ComponentPublicInstance;

Type definition for the RUnsignedIntegerField 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 { RUnsignedIntegerField } from "./unsigned_integer";

// Component reference typing
const unsignedIntegerFieldRef = ref<InstanceType<RUnsignedIntegerField>>();

// Programmatic component creation
const UnsignedIntegerFieldComponent: RUnsignedIntegerField = defineComponent({
  // ... implementation
});