UNPKG

@abaplint/runtime

Version:
9 lines (8 loc) 274 B
import { ICharacter } from "../types/_character"; import { INumeric } from "../types/_numeric"; export interface ISubstringInput { val: ICharacter | string; off?: INumeric; len?: INumeric; } export declare function substring(input: ISubstringInput): ICharacter;