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