sedk-mysql
Version:
Simple SQL builder and validator for MySQL
12 lines (11 loc) • 459 B
TypeScript
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;
}