projects/mangol/src/lib/interfaces/config-sidebar.interface.ts
Properties |
|
| collapsible |
collapsible:
|
Type : boolean
|
| Optional |
| mode |
mode:
|
Type : "side" | "push" | "over"
|
| Optional |
| opened |
opened:
|
Type : boolean
|
| Optional |
| title |
title:
|
Type : string
|
| Optional |
| toolbar |
toolbar:
|
Type : MangolConfigToolbar
|
| Optional |
import { MangolConfigToolbar } from './config-toolbar.interface';
export interface MangolConfigSidebar {
collapsible?: boolean;
opened?: boolean;
title?: string;
toolbar?: MangolConfigToolbar;
mode?: 'side' | 'push' | 'over';
}