UNPKG

sedk-mysql

Version:
12 lines (11 loc) 459 B
import { UpdateSetItemInfo } from '../../UpdateSetItemInfo'; import { SetStep } from './SetStep'; import { Table } from '../../database'; import { Artifacts, BaseStep } from '../BaseStep'; export declare class UpdateStep extends BaseStep { private readonly table; constructor(prevStep: BaseStep, table: Table); getStepStatement(artifacts?: Artifacts): string; getStepArtifacts(): Artifacts; set(...values: UpdateSetItemInfo[]): SetStep; }