Skip to content

⬅️ Back to Table of Contents

📄 types.ts

📊 Analysis Summary

Metric Count
📑 Type Aliases 2

📚 Table of Contents

🛠️ File Location:

📂 packages/website/src/components/ast/types.ts

Type Aliases

OnHoverNodeFn

type OnHoverNodeFn = (node?: [number, number]) => void;

ParentNodeType

type ParentNodeType = | 'esNode'
  | 'scope'
  | 'scopeDefinition'
  | 'scopeManager'
  | 'scopeReference'
  | 'scopeVariable'
  | 'tsNode'
  | 'tsSignature'
  | 'tsSymbol'
  | 'tsType'
  | undefined;