angular-shop-components
Version:
An angular 5.0+ set of reusable components and services for starting an online shop!
11 lines (10 loc) • 351 B
TypeScript
import { ElementRef, OnChanges, SimpleChanges } from '@angular/core';
/**
* A helper directive to focus buttons. You will only need this if using a custom template
*/
export declare class FocusDirective implements OnChanges {
private elm;
mwlFocus: boolean;
constructor(elm: ElementRef);
ngOnChanges(changes: SimpleChanges): void;
}