Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Type aliases

ModalItem

ModalItem: { attrs?: Record<string, unknown>; componentClass: UnsafeModalClass; key: number }

Type declaration

  • Optional attrs?: Record<string, unknown>
  • componentClass: UnsafeModalClass
  • key: number

UnsafeModalClass

UnsafeModalClass: ComponentClass<any, Modal> & { component: typeof component; get dismissibleOptions(): IDismissibleOptions }

Ideally, show would take a higher-kinded generic, ala: show<Attrs, C>(componentClass: C<Attrs>, attrs: Attrs): void Unfortunately, TypeScript does not support this: https://github.com/Microsoft/TypeScript/issues/1213 Therefore, we have to use this ugly, messy workaround.

Generated using TypeDoc version 0.22.10