mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-31 12:33:40 +00:00
9 lines
225 B
TypeScript
9 lines
225 B
TypeScript
import { BehaviorSubject } from 'rxjs'
|
|
import { Injectable } from '@angular/core'
|
|
|
|
@Injectable({
|
|
providedIn: 'root',
|
|
})
|
|
export class SplitPaneTracker {
|
|
sidebarOpen$: BehaviorSubject<boolean> = new BehaviorSubject(false)
|
|
} |