@hxui/angular
Version:
* * *
12 lines (11 loc) • 337 B
TypeScript
import { OnInit } from '@angular/core';
import { Context, Size } from '../enums';
export declare class LoadersComponent implements OnInit {
size: Size;
context: Context;
/** Enums to be used in the template **/
contextEnum: typeof Context;
sizeEnum: typeof Size;
constructor();
ngOnInit(): void;
}