declare module "@extra-array/rotate-update" { /** * Rotates values in array. * @param x an array (updated) * @param n rotate amount (+ve: left, -ve: right) * @returns x */ declare function rotate$(x: T[], n?: number): T[]; export = rotate$; //# sourceMappingURL=rotate$.d.ts.map}