artemis-code-file-manager
Version:
Simple File Explorer for Angular
12 lines (11 loc) • 387 B
TypeScript
import { OnDestroy } from '@angular/core';
import { BehaviorSubject } from 'rxjs';
import { AvialableView } from '../../shared/types';
export declare class ExplorerComponent implements OnDestroy {
private currentView;
avialableView: typeof AvialableView;
view: string;
private sub;
constructor(currentView: BehaviorSubject<AvialableView>);
ngOnDestroy(): void;
}