UNPKG

sedk-mysql

Version:
12 lines (11 loc) 446 B
import { OffsetStep } from './OffsetStep'; import { Artifacts, BaseStep } from '../BaseStep'; import { BaseLimitStep } from './BaseLimitStep'; export declare class LimitStep extends BaseLimitStep { private readonly limit; constructor(prevStep: BaseStep, limit: number, asBinder?: boolean); getStepStatement(): string; getStepArtifacts(): Artifacts; offset(value: number): OffsetStep; offset$(value: number): OffsetStep; }