mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 15:33:04 +00:00
15 lines
253 B
TypeScript
15 lines
253 B
TypeScript
import {of as observableOf } from 'rxjs';
|
|
|
|
export class SidebarServiceStub {
|
|
isCollapsed = observableOf(true);
|
|
|
|
collapse(): void {
|
|
this.isCollapsed = observableOf(true);
|
|
}
|
|
|
|
expand(): void {
|
|
this.isCollapsed = observableOf(false);
|
|
}
|
|
|
|
}
|