@abaplint/runtime
Version:
Transpiler - Runtime
11 lines (10 loc) • 443 B
TypeScript
import { Context } from "../context";
import { Structure, Table } from "../types";
import { ICharacter } from "../types/_character";
export declare function toValue(value: any): any;
export interface IInsertDatabaseOptions {
values?: Structure;
table?: Table;
connection?: string;
}
export declare function insertDatabase(table: string | ICharacter, options: IInsertDatabaseOptions, context: Context): Promise<number | undefined>;