/** * Returns the last element of the array. * * @param array - The array to return the last element from * @returns The last element of the array * * @category Array * @public */ export default function last(array: ElementType[]): ElementType | undefined;