UNPKG

@addapptables/notifier

Version:
17 lines (16 loc) 601 B
import { AbstractStrategy } from './abstract-strategy'; import { NotifierRef } from '../notifier-ref'; export declare class TopRightStrategy extends AbstractStrategy { protected getStyleNewNotifier(notifierRef: NotifierRef): { top: string; right: string; }; protected getStyleNotifierPosition(divNotifier: HTMLDivElement, clientHeight: number): { top: string; right: string; }; protected getStyleDeleteNotifier(elementChange: HTMLDivElement, clientHeightElementDelete: number): { top: string; right: string; }; }