UNPKG

@addapptables/notifier

Version:
17 lines (16 loc) 597 B
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; }; }