UNPKG

@breautek/storm

Version:

Object-Oriented REST API framework

16 lines (15 loc) 446 B
import { GetBinLogPositionQuery } from './GetBinLogPositionQuery'; interface IStatus { File: string; Position: string; } /** * For use with MySQL 8.0 and earlier. Obsolete since MySQL 8.4 * @deprecated */ export declare class GetMasterPositionQuery extends GetBinLogPositionQuery<IStatus> { protected _getQuery(): string; protected _getFile(row: IStatus): string; protected _getPosition(row: IStatus): string; } export {};