@abaplint/runtime
Version:
Transpiler - Runtime
10 lines (9 loc) • 315 B
TypeScript
import { Table } from "../types";
import { INumeric } from "../types/_numeric";
export interface IModifyInternalOptions {
index: INumeric;
from: any;
where?: (i: any) => boolean;
transporting?: string[];
}
export declare function modifyInternal(table: Table, options: IModifyInternalOptions): void;