UNPKG

node-firebird-driver-native

Version:
12 lines (11 loc) 556 B
import { AttachmentImpl } from './attachment'; import { AbstractEvents } from 'node-firebird-driver/dist/lib/impl'; import * as fb from 'node-firebird-native-api'; /** Events implementation. */ export declare class EventsImpl extends AbstractEvents { attachment: AttachmentImpl; eventCallback: fb.EventCallback; static queue(attachment: AttachmentImpl, names: string[], callBack: (counters: [string, number][]) => Promise<void>): Promise<EventsImpl>; /** Disposes this events' resources. */ protected internalCancel(): Promise<void>; }