any
What's any
Any just defeat typescript, because it allow any types of value.
let album: any;
album = true;
album = 'hello';
There are some specific times you may need to use the any type and there cloud be a time say that you're not sure what type of data you will be receiving.