declare module 'arr-rotate' {
    function arrayRotate<T>(input: T[], number: number): T[];
    export = arrayRotate;
}
