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