@abaplint/runtime
Version:
Transpiler - Runtime
11 lines (10 loc) • 358 B
TypeScript
import { FieldSymbol } from "../types";
import { ICharacter } from "../types/_character";
interface ISubstringAfterInput {
val: ICharacter | FieldSymbol | string;
sub?: ICharacter | string;
regex?: ICharacter | string;
pcre?: ICharacter | string;
}
export declare function substring_after(input: ISubstringAfterInput): ICharacter;
export {};