UNPKG

openfin-browser-adapter

Version:
14 lines (13 loc) 440 B
import { BaseApiClass } from './Base'; export interface NotificationOptions { url?: string; message?: string; } export declare class Notification extends BaseApiClass { static staticMethods: string[]; static staticSyncMethods: string[]; static instanceMethods: string[]; static connection: any; constructor(options: NotificationOptions); static create(options: NotificationOptions): Promise<Notification>; }