UNPKG

@abaplint/runtime

Version:
10 lines (9 loc) 288 B
import { String } from "../types"; import { ICharacter } from "../types/_character"; import { INumeric } from "../types/_numeric"; export interface IInsertInput { val: ICharacter; sub: ICharacter; off?: INumeric; } export declare function insert(input: IInsertInput): String;