ngx-skeleton-loader
Version:
Make beautiful, animated loading skeletons that automatically adapt to your Angular apps
14 lines (13 loc) • 425 B
TypeScript
import { OnInit, OnDestroy, AfterViewInit } from '@angular/core';
export declare class NgxSkeletonLoaderComponent implements OnInit, AfterViewInit, OnDestroy {
count: number;
appearance: 'circle' | '';
animation: 'progress' | 'progress-dark' | 'pulse' | 'false';
theme: {
[k: string]: string;
};
items: Array<any>;
ngOnInit(): void;
ngAfterViewInit(): void;
ngOnDestroy(): void;
}