UNPKG

@breautek/storm

Version:

Object-Oriented REST API framework

15 lines (14 loc) 404 B
import { GetBinLogPositionQuery } from './GetBinLogPositionQuery'; interface IStatus { File: string; Position: string; } /** * For use with MySQL 8.4 and later */ export declare class GetPrimaryPositionQuery extends GetBinLogPositionQuery<IStatus> { protected _getQuery(): string; protected _getFile(row: IStatus): string; protected _getPosition(row: IStatus): string; } export {};