Type alias Element

Element: {
    $$typeof: symbol;
    Construct?: ((...args) => any);
    children: any;
    id: number;
    memoize?: any;
    props: object;
    tag?: string;
    type: any;
}

Type declaration

  • $$typeof: symbol
  • Optional Construct?: ((...args) => any)
      • (...args): any
      • Parameters

        • Rest ...args: any[]

        Returns any

  • children: any
  • id: number
  • Optional memoize?: any
  • props: object
  • Optional tag?: string
  • type: any