clarity-angular
Version:
Angular components for Clarity
13 lines (12 loc) • 525 B
TypeScript
/**
* Copyright (c) 2016-2017 VMware, Inc. All Rights Reserved.
* This software is released under MIT license.
* The full license information can be found in LICENSE in the root directory of this project.
*/
import { OnDestroy } from "@angular/core";
import { VerticalNavIconService } from "./providers/vertical-nav-icon.service";
export declare class VerticalNavIcon implements OnDestroy {
private _verticalNavIconService;
constructor(_verticalNavIconService: VerticalNavIconService);
ngOnDestroy(): void;
}