GitHub

DaffSidebarRegistration

interface

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$1<unknown>
  body: Type$1<unknown>
  footer: Type$1<unknown>
}