My current package is from the npm repository: https://www.npmjs.com/package/@types/spotify-api
The package contains an interface in its index.d.ts
file, as shown below:
interface TrackObjectSimplified {
//... Interface properties here ...
}
I want to update this interface by adding a new property "album". How can I achieve this with my existing setup? Should I modify something in my custom @types
folder that I already have in my project?