sedk-mysql
Version:
Simple SQL builder and validator for MySQL
11 lines (10 loc) • 419 B
TypeScript
import { Artifacts, BaseStep } from '../BaseStep';
import { Column, Table } from '../../database';
import { IntoColumnsStep, IntoTableStep } from './IntoStep';
export declare class InsertStep extends BaseStep {
constructor(prevStep: BaseStep);
getStepStatement(): string;
getStepArtifacts(): Artifacts;
into(table: Table): IntoTableStep;
into(table: Table, ...columns: Column[]): IntoColumnsStep;
}