Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Type Aliases

ChannelParameters: Record<string, any>
ComponentModels: Record<string, any>
ComponentModels: Record<string, any>
ComponentParameters: Record<string, any>
HttpClient<T>: ((config: HttpClientConfig) => Promise<HttpResponse<T>>)

Type Parameters

  • T

Type declaration

HttpClientConfig: { data?: any; headers?: HttpHeaders; method: "GET" | "POST"; url: string }

Configuration of an HTTP client call.

Type declaration

  • Optional data?: any

    Optional: the data to send with the HTTP request. Will only be provided when the 'method' is 'post'.

  • Optional headers?: HttpHeaders

    Optional: the headers to send with the HTTP request.

  • method: "GET" | "POST"

    HTTP request method.

  • url: string

    The URL to send the HTTP request to.

HttpHeaders: Record<string, string | number | boolean>

Map of HTTP headers.

Listener<T, U>: ((eventData: T[U]) => any)

Type Parameters

  • T

  • U extends Extract<keyof T, string>

Type declaration

    • (eventData: T[U]): any
    • Event listener.

      Parameters

      • eventData: T[U]

      Returns any

MetaPosition: typeof META_POSITION_BEGIN | typeof META_POSITION_END
PageLinks: "self" | "site"
UnsubscribeFn: (() => void)

Type declaration

    • (): void
    • Function to unsubscribe a listener from an event.

      Returns void

Variables

TYPE_COMPONENT: "component" = 'component'

Generic component type.

TYPE_COMPONENT: "COMPONENT" = 'COMPONENT'

Generic component type.

TYPE_COMPONENT_CONTAINER: "container" = 'container'

Container type.

TYPE_COMPONENT_CONTAINER: "CONTAINER_COMPONENT" = 'CONTAINER_COMPONENT'

Container type.

TYPE_COMPONENT_CONTAINER_ITEM: "container-item" = 'container-item'

Container item type.

TYPE_COMPONENT_CONTAINER_ITEM: "CONTAINER_ITEM_COMPONENT" = 'CONTAINER_ITEM_COMPONENT'

Container item type.

TYPE_LINK_UNKNOWN: "unknown" = 'unknown'

Unresolved link.