@addapptables/notifier
Version:
Material notifier library for angular
17 lines (16 loc) • 609 B
TypeScript
import { AbstractStrategy } from './abstract-strategy';
import { NotifierRef } from '../notifier-ref';
export declare class BottomLeftStrategy extends AbstractStrategy {
protected getStyleNewNotifier(notifierRef: NotifierRef): {
bottom: string;
left: string;
};
protected getStyleNotifierPosition(divNotifier: HTMLDivElement, clientHeight: number): {
bottom: string;
left: string;
};
protected getStyleDeleteNotifier(elementChange: HTMLDivElement, clientHeightElementDelete: number): {
bottom: string;
left: string;
};
}