CompletionCallbackWrapper.d.ts 436 Bytes
Newer Older
冷佳娟's avatar
冷佳娟 committed
1 2 3 4 5 6 7 8
import { NativeCommandsSender } from './NativeCommandsSender';
import { Notification } from '../DTO/Notification';
export declare class CompletionCallbackWrapper {
    private readonly nativeCommandsSender;
    constructor(nativeCommandsSender: NativeCommandsSender);
    wrapReceivedCallback(callback: Function): (notification: Notification) => void;
    wrapOpenedCallback(callback: Function): (notification: Notification) => void;
}