UNPKG

node-firebird-driver

Version:
13 lines (12 loc) 483 B
import { AbstractAttachment } from './attachment'; import { Events } from '..'; /** AbstractStatement implementation. */ export declare abstract class AbstractEvents implements Events { attachment?: AbstractAttachment | undefined; protected constructor(attachment?: AbstractAttachment | undefined); /** Cancel this events' resources. */ cancel(): Promise<void>; get isValid(): boolean; private check; protected abstract internalCancel(): Promise<void>; }