Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Type aliases

ExtComponent

ExtComponent: Record<string, any> & ExtObservable

This type denotes the Ext.Component instance. Its not a real type with all properties, only used to improve the code readability.

ExtElement

ExtElement: {} & ExtObservable

This type denotes the Ext.Element instance. Its not a real type with all properties, only used to improve the code readability.

ExtObservable

ExtObservable: {}

This type denotes the Ext.Observable instance. Its not a real type with all properties, only used to improve the code readability.

Type declaration

    WaitForComponentOptions

    WaitForComponentOptions: Omit<WaitForOptions<ExtComponent>, "condition"> & { root: ExtComponent; target: string | ExtComponent }

    This type excludes the condition property from the WaitForOptions type and adds target

    WaitForComponentQueryOptions

    WaitForComponentQueryOptions: Omit<WaitForOptions<ExtComponent>, "condition"> & { root: ExtComponent; target: string }

    This type excludes the condition property from the WaitForOptions type and adds target

    It is used in the waitForComponentVisible method.

    Generated using TypeDoc