UNPKG

@abaplint/runtime

Version:
10 lines (9 loc) 287 B
import { ICharacter } from "../types/_character"; import { Table } from "../types"; export interface ISplitOptions { source: ICharacter | string; at: ICharacter | string; table?: Table; targets?: ICharacter[]; } export declare function split(param: ISplitOptions): void;