@abaplint/runtime
Version:
Transpiler - Runtime
9 lines (8 loc) • 395 B
TypeScript
import { Context } from "../context";
import { FieldSymbol, Structure, Table } from "../types";
import { ICharacter } from "../types/_character";
export interface IModifyDatabaseOptions {
values?: Structure | FieldSymbol;
table?: Table | FieldSymbol;
}
export declare function modifyDatabase(table: string | ICharacter, options: IModifyDatabaseOptions, context: Context): Promise<void>;