@abaplint/runtime
Version:
Transpiler - Runtime
10 lines (9 loc) • 336 B
TypeScript
import { ICharacter } from "../types/_character";
import { INumeric } from "../types/_numeric";
export interface IShiftLeftInput {
val: ICharacter | string;
sub?: ICharacter | string;
places?: ICharacter | INumeric | string;
circular?: INumeric;
}
export declare function shift_left(input: IShiftLeftInput): ICharacter;