declare function rotate(this: T[], value: number): T[]; export default rotate; declare global { interface Array { rotate: typeof rotate; } }