@abaplint/runtime
Version:
Transpiler - Runtime
6 lines (5 loc) • 502 B
TypeScript
import { Context } from "../context";
import { DatabaseRows, SelectDatabaseOptions, SelectRuntimeOptions } from "../db/db";
import { FieldSymbol, HashedTable, Structure, Table } from "../types";
export declare function select(target: Structure | Table | HashedTable | FieldSymbol, input: SelectDatabaseOptions, runtimeOptions: SelectRuntimeOptions, context: Context): Promise<void>;
export declare function rowsToTarget(target: Structure | Table | HashedTable | FieldSymbol, rows: DatabaseRows): void;