clr-angular-static-fix
Version:
1. Install Clarity Icons package through npm:
29 lines (23 loc) • 954 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 { ClrLoadingButton } from './loading-button';
export const CLR_LOADING_BUTTON_DIRECTIVES: Type<any>[] = [ClrLoadingButton];
({
imports: [CommonModule],
declarations: [CLR_LOADING_BUTTON_DIRECTIVES],
exports: [CLR_LOADING_BUTTON_DIRECTIVES],
})
export class ClrLoadingButtonModule {}
/* tslint:disable variable-name */
/** @deprecated since 0.11 */
export interface LoadingButton extends ClrLoadingButton {}
/** @deprecated since 0.11 */
export const LoadingButton = ClrLoadingButton;
/* tslint:enable variable-name */
/** @deprecated since 0.11 */
export const LOADING_BUTTON_DIRECTIVES = CLR_LOADING_BUTTON_DIRECTIVES;