UNPKG

@abaplint/runtime

Version:
11 lines (10 loc) 435 B
import { Context } from "../context"; import { FieldSymbol, Structure, Table } from "../types"; import { ICharacter } from "../types/_character"; export interface IUpdateDatabaseOptions { from?: Structure | FieldSymbol; table?: Table | FieldSymbol; set?: string[]; where?: string; } export declare function updateDatabase(table: string | ICharacter, options: IUpdateDatabaseOptions, context: Context): Promise<number>;