declare global { interface Array { /** * Returns the last element from an array. */ peek(): T; } } export {};