@abaplint/runtime
Version:
Transpiler - Runtime
13 lines (12 loc) • 477 B
TypeScript
import { DataReference, FieldSymbol, Structure, Table } from "../types";
import { ICharacter } from "../types/_character";
import { INumeric } from "../types/_numeric";
export interface IAssignInput {
source?: INumeric | ICharacter | Table | Structure | DataReference;
target: FieldSymbol;
dynamicName?: string;
dynamicSource?: ICharacter;
casting?: boolean;
component?: string | ICharacter;
}
export declare function assign(input: IAssignInput): void;