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