UNPKG

@thisisagile/easy

Version:

Straightforward library for building domain-driven microservice architectures

10 lines (9 loc) 284 B
import { SqlQuery } from './SqlQuery'; import { Table } from './Table'; import { Json } from '../types/Json'; export declare class Update extends SqlQuery { protected table: Table; protected fields: Json; constructor(table: Table, fields: Json); toString(): string; }