clr-angular-static-fix
Version:
1. Install Clarity Icons package through npm:
24 lines (19 loc) • 862 B
text/typescript
/*
* Copyright (c) 2016-2018 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 { CommonModule } from '@angular/common';
import { NgModule, Type } from '@angular/core';
import { ClrLoading } from './loading';
export const CLR_LOADING_DIRECTIVES: Type<any>[] = [ClrLoading];
({ imports: [CommonModule], declarations: [CLR_LOADING_DIRECTIVES], exports: [CLR_LOADING_DIRECTIVES] })
export class ClrLoadingModule {}
/* tslint:disable variable-name */
/** @deprecated since 0.11 */
export interface Loading extends ClrLoading {}
/** @deprecated since 0.11 */
export const Loading = ClrLoading;
/* tslint:enable variable-name */
/** @deprecated since 0.11 */
export const LOADING_DIRECTIVES = CLR_LOADING_DIRECTIVES;