declare module "@extra-array/splice" { /** * Removes or replaces existing values. * @param x an array * @param i remove index * @param n number of values to remove (rest) * @param vs values to insert */ declare function splice(x: T[], i: number, n?: number, ...vs: T[]): T[]; export = splice; //# sourceMappingURL=splice.d.ts.map}