artemis-code-file-manager
Version:
Simple File Explorer for Angular
9 lines (8 loc) • 316 B
TypeScript
import { BehaviorSubject } from 'rxjs';
import { AvialableView } from '../../shared/types';
export declare class ViewSwitcherComponent {
private currentView;
readonly avialableView: typeof AvialableView;
constructor(currentView: BehaviorSubject<AvialableView>);
setView(view: AvialableView): void;
}