In this code below, what does Promise<LetterService[]> mean?
Is the LetterService[] saying create an array with LetterService objects inside it?
What are the <> indicating here?
export default interface LetterService {
    GetLetters(): Promise<LetterService[]> }