You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
src = { url : string, type: string } will give an error:
Type '{ url: string; type: string; }' is not assignable to type 'string | (string & { url: string; type: string; })'.
Type '{ url: string; type: string; }' is not assignable to type 'string & { url: string; type: string; }'.
Type '{ url: string; type: string; }' is not assignable to type 'string'.(2322)
Using
src = { url : string, type: string }
will give an error:https://stackblitz.com/edit/angular-twfplh?file=src%2Fmain.ts
The text was updated successfully, but these errors were encountered: