10 lines
249 B
TypeScript
10 lines
249 B
TypeScript
export const noncapturingDelim: any;
|
|
/**
|
|
@param {string} str
|
|
@param {number} pos
|
|
@param {string} oldValue
|
|
@param {string} newValue
|
|
@returns {string}
|
|
*/
|
|
export function spliceStr(str: string, pos: number, oldValue: string, newValue: string): string;
|