graycoreio/daffodil

View on GitHub
libs/design/sidebar/src/sidebar-viewport/nav-placement.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * The placement of the nav in relation to the sidebar.
 * See {@link DaffNavPlacementEnum }
 */
export type DaffNavPlacement = 'above' | 'beside';

/**
 * The placement of the nav in relation to the sidebar.
 * See {@link DaffNavPlacement }
 */
export enum DaffNavPlacementEnum {
  ABOVE = 'above',
  BESIDE = 'beside',
}