GitHub

DaffSidebarRegistration

import { DaffSidebarRegistration } from '@daffodil/design/sidebar'

Represents a registration of a sidebar. A collection of sidebar components is associated with an ID which can be passed to DaffSidebarService.

interface DaffSidebarRegistration {
  id: string
  header: Type<unknown>
  body: Type<unknown>
  footer: Type<unknown>
}