@abaplint/runtime
Version:
Transpiler - Runtime
10 lines (9 loc) • 319 B
TypeScript
import { String } from "../types";
import { ICharacter } from "../types/_character";
import { INumeric } from "../types/_numeric";
export declare function condense(input: {
val: ICharacter | INumeric | string;
from?: ICharacter | string;
to?: ICharacter | string;
del?: ICharacter | string;
}): String;