Skip to content

⬅️ Back to Table of Contents

📄 types.ts

📊 Analysis Summary

Metric Count
🔄 Re-exports 1
📐 Interfaces 2
📑 Type Aliases 1

📚 Table of Contents

🛠️ File Location:

📂 packages/core/types.ts

Re-exports

Type Source Exported Names
namespace ./_configurable *

Interfaces

Position

Interface Code
export interface Position {
  x: number
  y: number
}

Properties

Name Type Optional Description
x number
y number

RenderableComponent

Interface Code
export interface RenderableComponent {
  /**
   * The element that the component should be rendered as
   *
   * @default 'div'
   */
  as?: object | string
}

Properties

Name Type Optional Description
as object | string

Type Aliases

PointerType

type PointerType = 'mouse' | 'touch' | 'pen';